summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2007-11-29 10:45:29 +0000
committerDaniel Veillard <veillard@src.gnome.org>2007-11-29 10:45:29 +0000
commitce38567c6b2b863fdccf97fc3cf0e5a5e4a75f7d (patch)
treee7a201242ff212b381a060a2c705bfd6c7e42972
parente27443f210f0264f7addd348d126cf7e29100c87 (diff)
downloadlibxslt-ce38567c6b2b863fdccf97fc3cf0e5a5e4a75f7d.tar.gz
libxslt-ce38567c6b2b863fdccf97fc3cf0e5a5e4a75f7d.tar.bz2
libxslt-ce38567c6b2b863fdccf97fc3cf0e5a5e4a75f7d.zip
avoid a problem in configure if an old gcrypt version is installed, patch
* configure.in: avoid a problem in configure if an old gcrypt version is installed, patch from Brent Cowgill, fixes #500390 Daniel svn path=/trunk/; revision=1450
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8f1ae36c..e93e864c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Nov 29 11:43:14 CET 2007 Daniel Veillard <daniel@veillard.com>
+
+ * configure.in: avoid a problem in configure if an old gcrypt
+ version is installed, patch from Brent Cowgill, fixes #500390
+
Tue Nov 13 13:08:08 PDT 2007 William Brack <wbrack@mmm.com.hk>
* libexslt/common.c, libexslt/dynamic.c: After discussion on
diff --git a/configure.in b/configure.in
index 31358b74..8f50ebbd 100644
--- a/configure.in
+++ b/configure.in
@@ -261,18 +261,18 @@ else
then
LIBGCRYPT_CFLAGS=""
LIBGCRYPT_LIBS=""
- echo gcrypt library version < 1.1.42 - Crypto extensions will not be available.
+ echo 'gcrypt library version < 1.1.42 - Crypto extensions will not be available.'
else
LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --cflags`
LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --libs`
AC_DEFINE(HAVE_GCRYPT, 1, [Define if gcrypt library is available.])
- echo Crypto extensions will be available.
+ echo 'Crypto extensions will be available.'
WITH_CRYPTO=1
fi
else
LIBGCRYPT_CFLAGS=""
LIBGCRYPT_LIBS=""
- echo Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.
+ echo 'Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.'
fi
fi
AC_SUBST(WITH_CRYPTO)