kalle Mon May 11 06:42:06 2009 UTC
Modified files:
/php-src/ext/phar config.w32
Log:
Fix conditional
http://cvs.php.net/viewvc.cgi/php-src/ext/phar/config.w32?r1=1.32&r2=1.33&diff_format=u
Index: php-src/ext/phar/config.w32
diff -u php-src/ext/phar/config.w32:1.32 php-src/ext/phar/config.w32:1.33
--- php-src/ext/phar/config.w32:1.32 Sun Mar 1 07:25:24 2009
+++ php-src/ext/phar/config.w32 Mon May 11 06:42:06 2009
@@ -1,4 +1,4 @@
-// $Id: config.w32,v 1.32 2009/03/01 07:25:24 cellog Exp $
+// $Id: config.w32,v 1.33 2009/05/11 06:42:06 kalle Exp $
// vim:ft=javascript
ARG_ENABLE("phar", "enable phar support", "no");
@@ -36,7 +36,7 @@
}
}
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');
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php