freeswitch/libs/libblade
Shane Bryldt fd49aebb1d FS-9952: Intermediate commit for a fresh point to start retrofitting the jsonrpc code that is incomplete 2017-03-22 17:42:50 -04:00
..
build fix unqlite build, don't do warn all ansi on it 2017-01-25 14:59:39 -06:00
src FS-9952: Intermediate commit for a fresh point to start retrofitting the jsonrpc code that is incomplete 2017-03-22 17:42:50 -04:00
test FS-9952: Preliminary session negotiations done, added a bunch of logging, fixed up cleanup code, needs more testing and more error handling 2017-03-22 17:42:50 -04:00
.gitignore fix unqlite build, don't do warn all ansi on it 2017-01-25 14:59:39 -06:00
AUTHORS libblade initial checkin 2016-11-28 16:35:09 -05:00
COPYING update libblade 2017-01-25 14:59:33 -06:00
ChangeLog libblade initial checkin 2016-11-28 16:35:09 -05:00
INSTALL libblade initial checkin 2016-11-28 16:35:09 -05:00
Makefile.am FS-9952: A bunch of cleanup and shifting connections towards ID based passing instead of pointers, will replicate and adjust for session system next 2017-03-22 17:42:50 -04:00
NEWS libblade initial checkin 2016-11-28 16:35:09 -05:00
README libblade initial checkin 2016-11-28 16:35:09 -05:00
acinclude.m4 libblade initial checkin 2016-11-28 16:35:09 -05:00
bootstrap.sh libblade initial checkin 2016-11-28 16:35:09 -05:00
configure.ac FS-9775: Fixed building libblade with address sanitizing support 2017-01-25 14:59:38 -06:00
libblade.pc.in libblade initial checkin 2016-11-28 16:35:09 -05:00

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>