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 /configure.in | |
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
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
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) |