fix custom version checks
authorMichael Wallner <mike@php.net>
Mon, 3 Oct 2016 10:06:33 +0000 (12:06 +0200)
committerMichael Wallner <mike@php.net>
Tue, 4 Oct 2016 08:25:11 +0000 (10:25 +0200)
autoconf/pecl/pecl.m4
config9.m4

index 9ab9aed32da5e1a326fe79d45f0a79dbf868721f..844fc24f7a74a5753f8e81fd775378e8fe22349d 100644 (file)
@@ -255,7 +255,9 @@ AC_DEFUN([PECL_CHECK_CUSTOM], [
                LIBS="-l$4"
 
                AC_CACHE_VAL(PECL_CACHE_VAR([$1_version]), [
+                       pushd $PECL_CACHE_VAR([$1_prefix])
                        PECL_CACHE_VAR([$1_version])=$5
+                       popd
                ])
                PECL_CHECKED_VERSION([$1])=$PECL_CACHE_VAR([$1_version])
 
index c8e0d45330e2cab6fe3b62f6117ae69858c098d9..f7619c572ff53224d5342f5480425499ec5f11ee 100644 (file)
@@ -58,7 +58,7 @@ if test "$PHP_HTTP" != "no"; then
        [  --with-http-libidn2-dir[=DIR]      HTTP: where to find libidn2], $PHP_HTTP_LIBCURL_DIR, no)
        if test "$PHP_HTTP_LIBIDN2_DIR" != "no"; then
                PECL_CHECK_CUSTOM(libidn2, "$PHP_HTTP_LIBIDN2_DIR", idn2.h, idn2,
-                       [$($EGREP "define IDN2_VERSION " "$path/include/idn2.h" | $SED -e's/^.*VERSION //g' -e 's/@<:@^0-9\.@:>@//g')])
+                       [$($EGREP "define IDN2_VERSION " "include/idn2.h" | $SED -e's/^.*VERSION //g' -e 's/@<:@^0-9\.@:>@//g')])
                if $PECL_VAR([HAVE_LIBIDN2]); then
                        PECL_DEFINE([HAVE_IDNA2008])
                fi
@@ -120,7 +120,7 @@ if test "$PHP_HTTP" != "no"; then
        [  --with-http-libidnkit2-dir[=DIR]   HTTP: where to find libidnkit2], $PHP_HTTP_LIBCURL_DIR, no)
        if test "$PHP_HTTP_LIBIDNKIT2_DIR" != "no"; then
                PECL_CHECK_CUSTOM(libidnkit2, "$PHP_HTTP_LIBIDNKIT2_DIR", idn/api.h, idnkit,
-                       [$($EGREP "define IDNKIT_VERSION_LIBIDN\b" "$path/include/idn/version.h" | $SED -e's/^.*VERSION_LIBIDN//g' -e 's/@<:@^0-9\.@:>@//g')])
+                       [$($EGREP "define IDNKIT_VERSION_LIBIDN\b" "include/idn/version.h" | $SED -e's/^.*VERSION_LIBIDN//g' -e 's/@<:@^0-9\.@:>@//g')])
                if $PECL_VAR([HAVE_LIBIDNKIT2]); then
                        PECL_DEFINE([HAVE_IDNA2008])
                fi
@@ -135,7 +135,7 @@ if test "$PHP_HTTP" != "no"; then
                        AC_MSG_WARN([libidnkit-$PECL_VAR([LIBIDNKIT2_VERSION]) already enabled, skipping libidnkit1])
                else
                        PECL_CHECK_CUSTOM(libidnkit, "$PHP_HTTP_LIBIDNKIT_DIR", idn/api.h, idnkit,
-                               [$($EGREP "define IDNKIT_VERSION\b" "$path/include/idn/version.h" | $SED -e's/^.*VERSION//g' -e 's/@<:@^0-9\.@:>@//g')])
+                               [$($EGREP "define IDNKIT_VERSION\b" "include/idn/version.h" | $SED -e's/^.*VERSION//g' -e 's/@<:@^0-9\.@:>@//g')])
                        if $PECL_VAR([HAVE_LIBIDNKIT]); then
                                PECL_DEFINE([HAVE_IDNA2003])
                        fi