Patch php_avoid_doubleequal.txt for cURL related Bug #75614
Patch version 2017-12-03 12:10 UTC
Return to Bug #75614 |
Download this patch
Patch Revisions:
Developer: jdolecek@NetBSD.org
$NetBSD: patch-ext_curl_config.m4,v 1.1 2017/11/15 11:01:31 jdolecek Exp $
--- ext/curl/config.m4.orig 2017-11-15 10:50:33.000000000 +0000
+++ ext/curl/config.m4
@@ -14,7 +14,7 @@ if test "$PHP_CURL" != "no"; then
dnl using pkg-config output
AC_MSG_CHECKING(for libcurl.pc)
- if test "$PHP_CURL" == "yes" -o "$PHP_CURL" == "/usr"; then
+ if test "$PHP_CURL" = "yes" -o "$PHP_CURL" = "/usr"; then
PKNAME=libcurl
AC_MSG_RESULT(using default path)
elif test -r $PHP_CURL/$PHP_LIBDIR/pkgconfig/libcurl.pc; then
$NetBSD: patch-makedist,v 1.1 2017/11/15 08:56:12 jdolecek Exp $
--- makedist.orig 2015-06-23 17:33:33.000000000 +0000
+++ makedist
@@ -35,7 +35,7 @@ if test "${1}" = "1" -a "${2}" -lt "28";
fi
IFS="$old_IFS"
-if test "x$PHPROOT" == "x"; then
+if test "x$PHPROOT" = "x"; then
PHPROOT=git@git.php.net:php-src.git;
fi
|