]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
some tweaks for building and linking in place before install
authorMichael Jerris <mike@jerris.com>
Sun, 11 Mar 2007 10:30:12 +0000 (10:30 +0000)
committerMichael Jerris <mike@jerris.com>
Sun, 11 Mar 2007 10:30:12 +0000 (10:30 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4538 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/js/Makefile.in
libs/js/configure.ac
libs/js/nsprpub/configure.in

index a088bb9d72456ef62c2916179166587b96c5bd6b..5cfc0f483726d4c2cb7aa4143e5be95fbb272601 100644 (file)
@@ -51,6 +51,7 @@ CLI_CFLAGS   = @CLI_CFLAGS@
 CLI_CPPFLAGS = @CLI_CPPFLAGS@
 CLI_LDFLAGS  = @CLI_LDFLAGS@
 CLI_LIBS     = @CLI_LIBS@
+LIBPATH      = @LIBPATH@
 
 RM           = rm -f
 CP           = cp
@@ -168,7 +169,7 @@ src/perlconnect/jsperl.o: src/perlconnect/jsperl.c
 $(LIB_OBJS): src/jsautocfg.h
 src/jsautocfg.h: jscpucfg
        -rm -f $@ src/jsautocfg.h
-       $(LIBTOOL) --mode=execute ./jscpucfg >src/jsautocfg.h
+       $(LIBPATH) $(LIBTOOL) --mode=execute ./jscpucfg >src/jsautocfg.h
 jscpucfg.o: src/jscpucfg.c
        $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ -c $<
 jscpucfg: jscpucfg.o
index 64f40581fbf7421792ce95b4fa018dd9e31ad360..520b4f731b0476e4802df24731f68dafd55bd22b 100644 (file)
@@ -169,8 +169,9 @@ AC_ARG_WITH(nspr,
 AC_CACHE_CHECK([whether to build with NSPR], [ac_cv_with_nspr], [ac_cv_with_nspr=no])
 if test ".$ac_cv_with_nspr" = ".yes"; then
     sinclude(nsprpub/config/nspr.m4)
-    CPPFLAGS="$CPPFLAGS -DJS_THREADSAFE=1 -Insprpub/dist/include/nspr"
-    LDFLAGS="$LDFLAGS -L$prefix/lib -lnspr4"
+    CPPFLAGS="$CPPFLAGS -DJS_THREADSAFE=1 -Insprpub/dist/include/nspr -Insprpub/pr/include"
+    LDFLAGS="$LDFLAGS -L$prefix/lib -L./nsprpub/dist/lib -lnspr4"
+    LIBPATH="LD_LIBRARY_PATH=./nsprpub/dist/lib DYLD_LIBRARY_PATH=./nsprpub/dist/lib" 
 fi
 
 AC_SUBST(CLI_CFLAGS)
@@ -178,6 +179,7 @@ AC_SUBST(CLI_CPPFLAGS)
 AC_SUBST(CLI_LDFLAGS)
 AC_SUBST(CLI_LIBS)
 AC_SUBST(CLI_OBJS)
+AC_SUBST(LIBPATH)
 
 with_tags=""
 sinclude(libtool.m4)
index ea1026c9bb2f6762aef244b40d272c712b25ee32..a2acd93061aca49f4635bd771daa13745e14e476 100644 (file)
@@ -35,7 +35,7 @@ dnl may use your version of this file under either the MPL or the
 dnl GPL.
 dnl 
 
-AC_PREREQ(2.12)
+AC_PREREQ(2.59)
 AC_INIT(config/libc_r.h)
 
 AC_CONFIG_AUX_DIR(${srcdir}/build/autoconf)
@@ -405,8 +405,8 @@ if test "$target" != "$host"; then
 
     AC_MSG_CHECKING([whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works])
     AC_TRY_COMPILE([], [return(0);], 
-        [ac_cv_prog_host_cc_works=1 AC_MSG_RESULT([yes])],
-        AC_MSG_ERROR([installation or configuration problem: $host compiler $HOST_CC cannot create executables.]) )
+        [ac_cv_prog_host_cc_works=1; AC_MSG_RESULT([yes])],
+        [AC_MSG_ERROR([installation or configuration problem: $host compiler $HOST_CC cannot create executables.])] )
 
     CC=$_SAVE_CC
     CFLAGS=$_SAVE_CFLAGS