FreeSWITCH:
1. The included patched file (1130800-libs-srtp-configure-ac.patch) did not seem to get pushed to the git server. Here we try again. 2. Update the patches/0000011-Makefile.am.patch file. Signed-off-by: Mazi Lo <openwrt.mazilo@recursor.net>
This commit is contained in:
parent
cc7c560f55
commit
1fd4c936c6
2 changed files with 5 additions and 3 deletions
|
@ -30,7 +30,7 @@
|
|||
freeswitch_SOURCES = src/switch.c
|
||||
freeswitch_CFLAGS = $(AM_CFLAGS) $(CORE_CFLAGS)
|
||||
-freeswitch_LDFLAGS = $(AM_LDFLAGS) -lpthread -rpath $(libdir)
|
||||
+freeswitch_LDFLAGS = $(AM_LDFLAGS) -lpthread
|
||||
+freeswitch_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS) $(LIBS) -lpthread
|
||||
freeswitch_LDADD = libfreeswitch.la libs/apr/libapr-1.la
|
||||
|
||||
if HAVE_ODBC
|
||||
|
|
|
@ -5,11 +5,13 @@
|
|||
AC_MSG_RESULT($enable_kernel_linux)
|
||||
|
||||
-dnl Check for /dev/urandom
|
||||
-AC_CHECK_FILE(/dev/urandom, DEV_URANDOM=/dev/urandom,
|
||||
- [AC_CHECK_FILE(/dev/random, DEV_URANDOM=/dev/random)])
|
||||
+
|
||||
+dnl Check for /dev/urandom ONLY when NOT cross compiling
|
||||
+if test "$cross_compiling" != yes; then
|
||||
AC_CHECK_FILE(/dev/urandom, DEV_URANDOM=/dev/urandom,
|
||||
[AC_CHECK_FILE(/dev/random, DEV_URANDOM=/dev/random)])
|
||||
+ AC_CHECK_FILE(/dev/urandom, DEV_URANDOM=/dev/urandom,
|
||||
+ [AC_CHECK_FILE(/dev/random, DEV_URANDOM=/dev/random)])
|
||||
+fi
|
||||
|
||||
dnl Checks for header files.
|
||||
|
|
Loading…
Reference in a new issue