diff options
author | Chris Toshok <toshok@ximian.com> | 2004-02-26 03:18:41 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-02-26 03:18:41 +0800 |
commit | ba5b85041482d49f5065cd33d8d5c64ef900426f (patch) | |
tree | 9dde5d74a533b494b79d33584d64105bf690ed2a | |
parent | 438e909287008f115657ea7bd24066ae4b816917 (diff) | |
download | gsoc2013-evolution-ba5b85041482d49f5065cd33d8d5c64ef900426f.tar.gz gsoc2013-evolution-ba5b85041482d49f5065cd33d8d5c64ef900426f.tar.zst gsoc2013-evolution-ba5b85041482d49f5065cd33d8d5c64ef900426f.zip |
add "$xhave_nss = xyes" to the AM_CONDITIONAL for ENABLE_SMIME.
2004-02-25 Chris Toshok <toshok@ximian.com>
* configure.in: add "$xhave_nss = xyes" to the AM_CONDITIONAL for
ENABLE_SMIME.
svn path=/trunk/; revision=24869
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-02-25 Chris Toshok <toshok@ximian.com> + + * configure.in: add "$xhave_nss = xyes" to the AM_CONDITIONAL for + ENABLE_SMIME. + 2004-02-24 JP Rosevear <jpr@ximian.com> * marshal.mk: make sure to use the srcdir to build the list diff --git a/configure.in b/configure.in index 794b8b9ee6..048aa66747 100644 --- a/configure.in +++ b/configure.in @@ -824,7 +824,7 @@ 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) +AM_CONDITIONAL(ENABLE_SMIME, test x$enable_smime = xyes -a $xhave_nss = xyes) AC_SUBST(MANUAL_NSPR_CFLAGS) AC_SUBST(MANUAL_NSPR_LIBS) |