summaryrefslogtreecommitdiff
path: root/ext/phar/config.w32
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-11 06:42:06 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-11 06:42:06 +0000
commited5b73e1749dc71fe13bf27078bab9fcc823f9a6 (patch)
treeed19cc818c1a4dd0858809d9a92ee24218268d4b /ext/phar/config.w32
parent6a24606248de74cc7aa6af2f99945d6811596e32 (diff)
downloadphp-git-ed5b73e1749dc71fe13bf27078bab9fcc823f9a6.tar.gz
Fix conditional
Diffstat (limited to 'ext/phar/config.w32')
-rw-r--r--ext/phar/config.w322
1 files changed, 1 insertions, 1 deletions
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');