freeswitch/libs/libblade
Shane Bryldt cc627e534f FS-10167: Shifted the routing layer to occur slightly lower in the processing stack, which allows routing of messages without creating local pending requests for callback and TTL tracking 2017-05-31 16:19:08 -06:00
..
build
flows
src
switchblade
test
.gitignore
AUTHORS
COPYING
ChangeLog
INSTALL
Makefile.am
NEWS
README
acinclude.m4
bootstrap.sh
configure.ac
libblade.pc.in
libblade.props
libblade.sln
libblade.vcxproj
libblade.vcxproj.filters

README

== Build ==
To build against the in tree version of libks follow these steps, from the starting point of ./libs/libblade/:

<code>
cd ../libks/
./bootstrap.sh
./configure
make
make check

cd ../libblade/
./boostrap.sh
./configure --with-libks=`realpath ../libks/`
make
make check

</code>

If you are trying to run the 'make distcheck' target while using the
in tree version of libks, then you need to specify the
DISTCHECK_CONFIGURE_FLAGS env variable like:

<code>
DISTCHECK_CONFIGURE_FLAGS="--with-libks=/usr/src/freeswitch/libs/libks" make distcheck
</code>