From: Kalle Sommer Nielsen Date: Mon, 11 May 2009 06:43:05 +0000 (+0000) Subject: MFH: Fix conditional X-Git-Tag: php-5.3.0RC3~289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=776a648f17f95a0762c2d5ab963980b2234b48e9;p=php MFH: Fix conditional --- diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index 33b90beeaf..93504f61fb 100644 --- a/ext/phar/config.w32 +++ b/ext/phar/config.w32 @@ -36,7 +36,7 @@ if (PHP_PHAR != "no") { } } if (PHP_HASH != "no") { - if (PHP_HASH_SHARED == "no") { + if (!PHP_HASH_SHARED) { AC_DEFINE("PHAR_HASH_OK", 1); } else { WARNING('Phar: sha256/sha512 signature support disabled if ext/hash is built shared');