diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2007-11-29 10:45:29 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2007-11-29 10:45:29 +0000 |
commit | ce38567c6b2b863fdccf97fc3cf0e5a5e4a75f7d (patch) | |
tree | e7a201242ff212b381a060a2c705bfd6c7e42972 | |
parent | e27443f210f0264f7addd348d126cf7e29100c87 (diff) | |
download | libxslt-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-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -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) |