[Freeswitch-svn] [commit] r2913 - freeswitch/trunk/libs
Freeswitch SVN
anthm at freeswitch.org
Sun Oct 1 12:06:17 EDT 2006
Author: anthm
Date: Sun Oct 1 12:06:16 2006
New Revision: 2913
Modified:
freeswitch/trunk/libs/mozilla.build.sh
Log:
fix spidermonkey freebsd build. Thanks vile for the patch
Modified: freeswitch/trunk/libs/mozilla.build.sh
==============================================================================
--- freeswitch/trunk/libs/mozilla.build.sh (original)
+++ freeswitch/trunk/libs/mozilla.build.sh Sun Oct 1 12:06:16 2006
@@ -1,3 +1,29 @@
+hosttype=`uname -s`
+
+if [ $hosttype = "FreeBSD" ] ; then
+
+patch <<__EOF__
+--- nsprpub/pr/include/md/_freebsd.h.orig Sat Sep 30 22:19:12 2006
++++ nsprpub/pr/include/md/_freebsd.h Sat Sep 30 22:23:16 2006
+@@ -106,6 +106,11 @@
+ #define _PR_IPV6_V6ONLY_PROBE
+ #endif
+
++#if __FreeBSD_version >= 601103
++#define _PR_HAVE_GETPROTO_R
++#define _PR_HAVE_5_ARG_GETPROTO_R
++#endif
++
+ #define USE_SETJMP
+
+ #ifndef _PR_PTHREADS
+__EOF__
+
+cp js/src/config/Linux_All.mk js/src/config/`uname -s``uname -r`.mk
+ldflags=-lpthread
+
+fi
+
arch=`uname -m`
opts=""
@@ -5,7 +31,7 @@
opts="--enable-64bit"
fi
-cd nsprpub && ./configure $opts && $MAKE
+cd nsprpub && LDFLAGS=$ldflags ./configure $opts && $MAKE
cd ../js/src && JS_THREADSAFE=1 JS_HAS_FILE_OBJECT=1 OTHER_LIBS="-L../../../mozilla/nsprpub/dist/lib" INCLUDES="-I../../../mozilla/nsprpub/dist/include/nspr" $MAKE -f Makefile.ref `find . -name libjs.a`
More information about the Freeswitch-svn
mailing list