diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-10-02 00:22:54 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-10-02 00:22:54 +0800 |
commit | b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b (patch) | |
tree | a31b37da8d0e95575d7712d112a32c00248ff8e1 /configure.in | |
parent | edb4e998b4a4002c34c4198232a37c7d9abe6ee8 (diff) | |
download | gsoc2013-evolution-b0dd4c8d2aa8575f7e7df36be60378ed4ed6c20b.tar.gz 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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
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" |