Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | Use pkg-config to find gcrypt and libxml2. |
| 2 | |
| 3 | Upstream-Status: Pending [libxml2 is upstreamable] |
| 4 | |
| 5 | RP 2014/5/22 |
| 6 | |
| 7 | Index: libxslt-1.1.28/configure.in |
| 8 | =================================================================== |
| 9 | --- libxslt-1.1.28.orig/configure.in 2014-05-13 16:46:02.278474967 +0000 |
| 10 | +++ libxslt-1.1.28/configure.in 2014-05-13 16:53:56.510472561 +0000 |
| 11 | @@ -376,6 +376,8 @@ |
| 12 | AC_SUBST(PYTHON_SUBDIR) |
| 13 | AC_SUBST(PYTHON_LIBS) |
| 14 | |
| 15 | +PKG_PROG_PKG_CONFIG |
| 16 | + |
| 17 | AC_ARG_WITH(crypto, [ --with-crypto Add crypto support to exslt (on)]) |
| 18 | WITH_CRYPTO=0 |
| 19 | if test "$with_crypto" = "no" ; then |
| 20 | @@ -391,26 +393,13 @@ |
| 21 | WITH_CRYPTO=1 |
| 22 | ;; |
| 23 | *) |
| 24 | - AC_PATH_PROG(LIBGCRYPT_CONFIG, libgcrypt-config, no) |
| 25 | - if test "$LIBGCRYPT_CONFIG" != "no" ; then |
| 26 | - LIBGCRYPT_VERSION=`$LIBGCRYPT_CONFIG --version` |
| 27 | - if test VERSION_TO_NUMBER(echo $LIBGCRYPT_VERSION) -lt VERSION_TO_NUMBER(echo "1.1.42") |
| 28 | - then |
| 29 | - LIBGCRYPT_CFLAGS="" |
| 30 | - LIBGCRYPT_LIBS="" |
| 31 | - echo 'gcrypt library version < 1.1.42 - Crypto extensions will not be available.' |
| 32 | - else |
| 33 | - LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --cflags` |
| 34 | - LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --libs` |
| 35 | - AC_DEFINE(HAVE_GCRYPT, 1, [Define if gcrypt library is available.]) |
| 36 | - echo 'Crypto extensions will be available.' |
| 37 | + PKG_CHECK_MODULES(LIBGCRYPT, [libgcrypt >= 1.1.42], [ |
| 38 | + AC_DEFINE(HAVE_GCRYPT, 1, [Define if gcrypt library is available.]) |
| 39 | + echo 'Crypto extensions will be available.' |
| 40 | WITH_CRYPTO=1 |
| 41 | - fi |
| 42 | - else |
| 43 | - LIBGCRYPT_CFLAGS="" |
| 44 | - LIBGCRYPT_LIBS="" |
| 45 | - echo 'Crypto extensions will not be available. Install libgcrypt and reconfigure to make available.' |
| 46 | - fi |
| 47 | + ], [ |
| 48 | + echo 'Crypto extensions will not be available. Install libgcrypt >= 1.1.42 and reconfigure to make available.' |
| 49 | + ]) |
| 50 | esac |
| 51 | fi |
| 52 | AC_SUBST(WITH_CRYPTO) |
| 53 | @@ -471,24 +460,8 @@ |
| 54 | dnl some tweaking - David Hรคrdeman 30/10/2001 |
| 55 | dnl |
| 56 | |
| 57 | -LIBXML_CONFIG_PREFIX="" |
| 58 | LIBXML_SRC="" |
| 59 | |
| 60 | -AC_ARG_WITH(libxml-prefix, |
| 61 | - [ --with-libxml-prefix=[PFX] Specify location of libxml config], |
| 62 | - LIBXML_CONFIG_PREFIX=$withval |
| 63 | -) |
| 64 | - |
| 65 | -AC_ARG_WITH(libxml-include-prefix, |
| 66 | - [ --with-libxml-include-prefix=[PFX] Specify location of libxml headers], |
| 67 | - LIBXML_CFLAGS="-I$withval" |
| 68 | -) |
| 69 | - |
| 70 | -AC_ARG_WITH(libxml-libs-prefix, |
| 71 | - [ --with-libxml-libs-prefix=[PFX] Specify location of libxml libs], |
| 72 | - LIBXML_LIBS="-L$withval" |
| 73 | -) |
| 74 | - |
| 75 | AC_ARG_WITH(libxml-src, |
| 76 | [ --with-libxml-src=[DIR] For libxml thats not installed yet (sets all three above)], |
| 77 | LIBXML_SRC="$withval" |
| 78 | @@ -551,28 +524,9 @@ |
| 79 | fi |
| 80 | fi |
| 81 | |
| 82 | -dnl |
| 83 | -dnl make sure xml2-config is executable, |
| 84 | -dnl test version and init our variables |
| 85 | -dnl |
| 86 | - |
| 87 | -if ${XML_CONFIG} --libs print > /dev/null 2>&1 |
| 88 | -then |
| 89 | - XMLVERS=`$XML_CONFIG --version` |
| 90 | - if test VERSION_TO_NUMBER(echo $XMLVERS) -ge VERSION_TO_NUMBER(echo $LIBXML_REQUIRED_VERSION) |
| 91 | - then |
| 92 | - AC_MSG_RESULT($XMLVERS found) |
| 93 | - else |
| 94 | - AC_MSG_ERROR(Version $XMLVERS found. You need at least libxml2 $LIBXML_REQUIRED_VERSION for this version of libxslt) |
| 95 | - fi |
| 96 | - LIBXML_LIBS="$LIBXML_LIBS `$XML_CONFIG --libs`" |
| 97 | - if test "x$LIBXML_SRC" = "x"; then |
| 98 | - LIBXML_CFLAGS="$LIBXML_CFLAGS `$XML_CONFIG --cflags`" |
| 99 | - fi |
| 100 | -else |
| 101 | - AC_MSG_ERROR([Could not find libxml2 anywhere, check ftp://xmlsoft.org/.]) |
| 102 | -fi |
| 103 | - |
| 104 | +PKG_CHECK_MODULES(LIBXML, [libxml-2.0 >= $LIBXML_REQUIRED_VERSION],, |
| 105 | + [AC_MSG_ERROR([Could not find libxml-2.0 >= $LIBXML_REQUIRED_VERSION anywhere, check ftp://xmlsoft.org/.])] |
| 106 | +) |
| 107 | |
| 108 | AC_SUBST(CFLAGS) |
| 109 | AC_SUBST(CPPFLAGS) |
| 110 | @@ -597,7 +551,7 @@ |
| 111 | |
| 112 | if test "$with_plugins" = "yes" ; then |
| 113 | AC_MSG_CHECKING([libxml2 module support]) |
| 114 | - WITH_MODULES="`$XML_CONFIG --modules`" |
| 115 | + WITH_MODULES="`$PKG_CONFIG --variable=modules libxml-2.0`" |
| 116 | if test "${WITH_MODULES}" = "1"; then |
| 117 | AC_MSG_RESULT(yes) |
| 118 | else |