Update of /cvsroot/gaim/gaim
In directory sc8-pr-cvs1:/tmp/cvs-serv25745
Modified Files:
configure.ac
Log Message:
nspr seems to need to link against libpthread. this seems to make that happen.
Index: configure.ac
===================================================================
RCS file: /cvsroot/gaim/gaim/configure.ac,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -d -p -r1.195 -r1.196
--- configure.ac 13 Oct 2003 23:20:07 -0000 1.195
+++ configure.ac 16 Oct 2003 22:19:33 -0000 1.196
@@ -574,7 +574,7 @@ if test "x$enable_nss" != "xno"; then
nsprlibs="-ldl $with_nspr_libs/libplc4.a $with_nspr_libs/libplds4.a $with_nspr_libs/libnspr4.a $PTHREAD_LIB"
fi
else
- nsprlibs="-ldl -lplc4 -lplds4 -lnspr4 $PTHREAD_LIB"
+ nsprlibs="-ldl -lplc4 -lplds4 -lpthread -lnspr4 $PTHREAD_LIB"
fi
AC_CACHE_CHECK([for Mozilla nspr libraries], moz_nspr_libs,
|