From: Kalle Sommer Nielsen Date: Mon, 11 May 2009 06:42:06 +0000 (+0000) Subject: Fix conditional X-Git-Tag: php-5.4.0alpha1~191^2~3693 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed5b73e1749dc71fe13bf27078bab9fcc823f9a6;p=php Fix conditional --- diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index d4bc499c82..b880590c08 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');