diff options
author | Chris Toshok <toshok@ximian.com> | 2003-10-30 04:16:03 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-10-30 04:16:03 +0800 |
commit | 302a9b1ed51e68e26c3d15fc6a6daf875fd7febc (patch) | |
tree | 011ca350ebc69c04bd38092dc51363bf262f056b /configure.in | |
parent | 741182663966e288b4de8666f336b70a7d4ee856 (diff) | |
download | gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar.gz gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar.bz2 gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar.lz gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar.xz gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.tar.zst gsoc2013-evolution-302a9b1ed51e68e26c3d15fc6a6daf875fd7febc.zip |
use $SMIME_DIR. instead of explicitly including smime.
2003-10-29 Chris Toshok <toshok@ximian.com>
* Makefile.am (SUBDIRS): use $SMIME_DIR. instead of explicitly
including smime.
* configure.in: add some smime foo - a status message, an
AM_CONDITIONAL (ENABLE_SMIME)
svn path=/trunk/; revision=23123
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 36fc58990b..2499993ab1 100644 --- a/configure.in +++ b/configure.in @@ -722,6 +722,7 @@ dnl dnl The Evolution security extensions are only built if these libraries are found dnl ******************************************************************************** msg_ssl="no" +msg_smime="no" dnl these 2 enable's are inverses of each other AC_ARG_ENABLE(nss, [ --enable-nss=[yes,no,static] Attempt to use Mozilla libnss for SSL support.], @@ -760,6 +761,8 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do PKG_CHECK_MODULES(NSS, mozilla-nss, have_nss="yes") if test "x${have_nss}" = "xyes"; then msg_ssl="yes (Mozilla NSS)" + msg_smime="yes (Mozilla NSS)" + enable_smime="yes" mozilla_nspr="mozilla-nspr" mozilla_nss="mozilla-nss" AC_DEFINE(HAVE_NSS,1,[Define if you have NSS]) @@ -910,8 +913,10 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do AC_DEFINE(HAVE_SSL) if test "$enable_nss" = "static"; then msg_ssl="yes (Mozilla NSS:static)" + msg_smime="yes (Mozilla NSS:static)" else msg_ssl="yes (Mozilla NSS)" + msg_smime="yes (Mozilla NSS)" fi # static_nss MANUAL_NSS_LIBS="-L$with_nss_libs $nsslibs" else @@ -929,6 +934,8 @@ dnl If the user specifies --with-foo or --enable-nss=static, then we have to do fi fi +AM_CONDITIONAL(ENABLE_SMIME, test x$enable_smime = xyes) + AC_SUBST(MANUAL_NSPR_CFLAGS) AC_SUBST(MANUAL_NSPR_LIBS) AC_SUBST(MANUAL_NSS_CFLAGS) @@ -1453,6 +1460,7 @@ echo "\ Pilot conduits: $msg_pilot Kerberos 4/5: $msg_krb4/$msg_krb5 SSL support: $msg_ssl + SMIME support: $msg_smime IPv6 support: $msg_ipv6 Dot Locking: $msg_dot File Locking: $msg_file |