freeswitch/libs/libblade
2017-04-17 11:10:20 -06:00
..
build fix unqlite build, don't do warn all ansi on it 2017-01-25 14:59:39 -06:00
src FS-10167: fixed a couple deadlock issues and a misconception about the locks on hash 2017-04-17 11:10:20 -06:00
test FS-10167: Added ks_list_delete_iterator() to delete the node at the current iterator position (only if available if iterator is active). Updated blade_session to reflect ks_list_t being internally thread-safe now. 2017-04-14 12:32:13 -06:00
.gitignore fix unqlite build, don't do warn all ansi on it 2017-01-25 14:59:39 -06:00
acinclude.m4
AUTHORS
bootstrap.sh
ChangeLog
configure.ac FS-9775: Fixed building libblade with address sanitizing support 2017-01-25 14:59:38 -06:00
COPYING
INSTALL
libblade.pc.in
libblade.props FS-10167: Added windows compilation of libconfig and libsodium to support libblade, all of which now have windows projects and a new libblade solution containing everything. Blade compiles, but many warnings have been disabled and should be reviewed and fixed where reasonable towards clean compiling. Code Analysis has also been enabled for visual studio projects, warnings beginning with C6XXX can be ignored unless adding code-analysis macros to libks and libblade. 2017-03-31 13:06:54 -06:00
libblade.sln FS-10167: Fixed some issues on library destruction. Added another of the test apps for libblade under windows. Fixed console input under tests. 2017-04-04 11:00:44 -06:00
libblade.vcxproj FS-10167: Added windows compilation of libconfig and libsodium to support libblade, all of which now have windows projects and a new libblade solution containing everything. Blade compiles, but many warnings have been disabled and should be reviewed and fixed where reasonable towards clean compiling. Code Analysis has also been enabled for visual studio projects, warnings beginning with C6XXX can be ignored unless adding code-analysis macros to libks and libblade. 2017-03-31 13:06:54 -06:00
libblade.vcxproj.filters FS-10167: Added windows compilation of libconfig and libsodium to support libblade, all of which now have windows projects and a new libblade solution containing everything. Blade compiles, but many warnings have been disabled and should be reviewed and fixed where reasonable towards clean compiling. Code Analysis has also been enabled for visual studio projects, warnings beginning with C6XXX can be ignored unless adding code-analysis macros to libks and libblade. 2017-03-31 13:06:54 -06:00
Makefile.am FS-10165: Removed dependancy and autoconf check for libsodium from libks. Moved DHT, bencode, and related tests into libblade. Still requires refactoring in blade from ks_* to blade_*. 2017-03-22 17:47:33 -05:00
NEWS
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>