diff options
author | JP Rosevear <jpr@ximian.com> | 2002-06-19 01:00:12 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-06-19 01:00:12 +0800 |
commit | b2adefb1d3a57a697163a8662b96061f1fdd55cb (patch) | |
tree | a2286506b85be87a080beceeee271bb26bcf99b6 | |
parent | 150129e1036b501edf06c7d6ef25a05917156119 (diff) | |
download | gsoc2013-evolution-b2adefb1d3a57a697163a8662b96061f1fdd55cb.tar.gz 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-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -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 |