From 776a648f17f95a0762c2d5ab963980b2234b48e9 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Mon, 11 May 2009 06:43:05 +0000 Subject: [PATCH] MFH: Fix conditional --- ext/phar/config.w32 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); -- 2.50.1