aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-06-19 01:00:12 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-06-19 01:00:12 +0800
commitb2adefb1d3a57a697163a8662b96061f1fdd55cb (patch)
treea2286506b85be87a080beceeee271bb26bcf99b6
parent150129e1036b501edf06c7d6ef25a05917156119 (diff)
downloadgsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.gz
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.bz2
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.lz
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.xz
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.zst
gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.zip
check for libsoftokn3 if we couldn't link the first time
2002-06-18 JP Rosevear <jpr@ximian.com> * configure.in: check for libsoftokn3 if we couldn't link the first time svn path=/trunk/; revision=17220
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e1f2eb7ed0..77f670175c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-18 JP Rosevear <jpr@ximian.com>
+
+ * configure.in: check for libsoftokn3 if we couldn't link the
+ first time
+
2002-06-14 Chris Toshok <toshok@ximian.com>
* libversit/vobject.c (unUseStr): fix a braindead typo that caused
diff --git a/configure.in b/configure.in
index 461c019b5e..fe35450375 100644
--- a/configure.in
+++ b/configure.in
@@ -938,6 +938,11 @@ if test "x${enable_nss}" = "xyes"; then
[
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")
+ if test "$moz_nss_libs" = no; then
+ nsslibs="-lssl3 -lsmime3 -lnss3 -lsoftokn3"
+ 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")
+ fi
LDFLAGS="$LDFLAGS_save"
])
if test "$moz_nss_libs" != no; then