freeswitch/libs/libblade
Shane Bryldt 099580022d FS-10690: [libblade] Added basedir.props from existing pending PR from Andrey Volk to support PCRE build requirements for blade on windows, currently only used by newly added PCRE props which are not yet used by FS projects 2017-10-02 13:09:51 -06:00
..
build
flows
src FS-10690: [libblade] Added PCRE to linux build, which can be used from system packages 2017-10-02 13:29:06 -05:00
switchblade FS-10690: [libblade] Added basedir.props from existing pending PR from Andrey Volk to support PCRE build requirements for blade on windows, currently only used by newly added PCRE props which are not yet used by FS projects 2017-10-02 13:09:51 -06:00
test FS-10690: [libblade] Added basedir.props from existing pending PR from Andrey Volk to support PCRE build requirements for blade on windows, currently only used by newly added PCRE props which are not yet used by FS projects 2017-10-02 13:09:51 -06:00
.gitignore
AUTHORS
COPYING
ChangeLog
INSTALL
Makefile.am FS-10690: [libblade] Added PCRE to linux build, which can be used from system packages 2017-10-02 13:29:06 -05:00
NEWS
README
acinclude.m4
bootstrap.sh
configure.ac FS-10690: [libblade] Added PCRE to linux build, which can be used from system packages 2017-10-02 13:29:06 -05:00
libblade.pc.in
libblade.props
libblade.sln
libblade.vcxproj FS-10690: [libblade] Added basedir.props from existing pending PR from Andrey Volk to support PCRE build requirements for blade on windows, currently only used by newly added PCRE props which are not yet used by FS projects 2017-10-02 13:09:51 -06:00
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>