aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-10-02 00:22:54 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-10-02 00:22:54 +0800
commitb0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b (patch)
treea31b37da8d0e95575d7712d112a32c00248ff8e1
parentedb4e998b4a4002c34c4198232a37c7d9abe6ee8 (diff)
downloadgsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.gz
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.bz2
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.lz
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.xz
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.zst
gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.zip
Order the linkline to be the same as the order in Mozilla (it is suggested
2001-09-30 Jeffrey Stedfast <fejj@ximian.com> * configure.in (nspr_libs): Order the linkline to be the same as the order in Mozilla (it is suggested that they be in this order). (nss_libs): Same. svn path=/trunk/; revision=13260
-rw-r--r--ChangeLog6
-rw-r--r--configure.in6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 737a28a405..a7c615c69b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-30 Jeffrey Stedfast <fejj@ximian.com>
+
+ * configure.in (nspr_libs): Order the linkline to be the same as
+ the order in Mozilla (it is suggested that they be in this order).
+ (nss_libs): Same.
+
2001-09-27 Dan Winship <danw@ximian.com>
* configure.in: Remove references to the "compose" program, since
diff --git a/configure.in b/configure.in
index 48836f4b7e..b2b5051641 100644
--- a/configure.in
+++ b/configure.in
@@ -801,7 +801,7 @@ if test "x${with_nspr_libs}" != "xno" -a "x${have_nspr_includes}" != "xno"; then
CFLAGS_save="$CFLAGS"
LDFLAGS_save="$LDFLAGS"
- nsprlibs="-lnspr4 -lplc4 -lplds4 $PTHREAD_LIB"
+ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB"
AC_CACHE_CHECK([for Mozilla nspr libraries], moz_nspr_libs,
[
CFLAGS="$CFLAGS $NSPR_CFLAGS"
@@ -865,8 +865,8 @@ msg_nss="no"
if test "x${with_nss_libs}" != "xno" -a "x${have_nss_includes}" != "xno"; then
LDFLAGS_save="$LDFLAGS"
- nsprlibs="-lnspr4 -lplc4 -lplds4 $PTHREAD_LIB"
- nsslibs="-lnss3 -lssl3 -lsmime3"
+ nsprlibs="-lplc4 -lplds4 -lnspr4 $PTHREAD_LIB"
+ nsslibs="-lssl3 -lsmime3 -lnss3"
AC_CACHE_CHECK([for Mozilla nss libraries], moz_nss_libs,
[
LDFLAGS="$LDFLAGS -L$with_nspr_libs $nsprlibs -L$with_nss_libs $nsslibs"