diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-04-23 08:24:34 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-04-23 08:24:34 +0800 |
commit | 29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f (patch) | |
tree | 85e841b461719853ea390d912578356c236cf08d | |
parent | b0795401c735bea2aab3fb0da4f4a8824d8e210a (diff) | |
download | gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar.gz gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar.bz2 gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar.lz gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar.xz gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.tar.zst gsoc2013-evolution-29b0f2cffcc43b4d0d6ebf194ed8bc17fccd777f.zip |
We need to link in more than just libnspr4, we also need libpthread.
2001-04-21 Jeffrey Stedfast <fejj@ximian.com>
* configure.in (have_nspr_libs): We need to link in more than just
libnspr4, we also need libpthread.
(have_nss_libs): Don't forget to add nsprlibs to the LDFLAGS.
svn path=/trunk/; revision=9497
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2001-04-21 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in (have_nspr_libs): We need to link in more than just + libnspr4, we also need libpthread. + (have_nss_libs): Don't forget to add nsprlibs to the LDFLAGS. + 2001-04-21 Duncan Mak <duncan@ximian.com> * art/Makefile.am (images_DATA): Added in composer-message.png. diff --git a/configure.in b/configure.in index 5c524a5016..3417efbdab 100644 --- a/configure.in +++ b/configure.in @@ -551,7 +551,7 @@ if test "x${with_nspr_libs}" != "xno" -a "x${have_nspr_includes}" != "xno"; then CFLAGS_save="$CFLAGS" LDFLAGS_save="$LDFLAGS" - nsprlibs="-lnspr4" + nsprlibs="-lnspr4 -lplc4 -lplds4 -lpthread" AC_CACHE_CHECK([for Mozilla nspr libraries], moz_nspr_libs, [ CFLAGS="$CFLAGS $NSPR_CFLAGS" @@ -608,11 +608,11 @@ msg_nss="no" if test "x${with_nss_libs}" != "xno" -a "x${have_nss_includes}" != "xno"; then LDFLAGS_save="$LDFLAGS" - nsprlibs="-lnspr4" + nsprlibs="-lnspr4 -lplc4 -lplds4 -lpthread" nsslibs="-lnss3 -lnssckbi -lssl3 -lsmime3" AC_CACHE_CHECK([for Mozilla nss libraries], moz_nss_libs, [ - LDFLAGS="$LDFLAGS -L$with_nss_libs $nsslibs" + LDFLAGS="$LDFLAGS -L$with_nspr_libs $nsprlibs -L$with_nss_libs $nsslibs" AC_TRY_LINK_FUNC(NSS_Init, moz_nss_libs="yes", moz_nss_libs="no") LDFLAGS="$LDFLAGS_save" ]) |