From 94dcaa27fba205aa6aedb1409a817a3c5d4285d8 Mon Sep 17 00:00:00 2001 From: Steph Fox Date: Mon, 1 Sep 2008 16:29:38 +0000 Subject: - Fix the fix (sorry, missed this until now) --- ext/phar/config.w32 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'ext/phar/config.w32') diff --git a/ext/phar/config.w32 b/ext/phar/config.w32 index a5d962082c..c9bef79209 100644 --- a/ext/phar/config.w32 +++ b/ext/phar/config.w32 @@ -1,18 +1,16 @@ // $Id$ // vim:ft=javascript -// this next line should be changed back to "yes" after fixes are committed to the snapshot build process -ARG_ENABLE("phar", "disable phar support", false); +ARG_ENABLE("phar", "disable phar support", "yes"); ARG_ENABLE("phar-native-ssl", "enable phar with native OpenSSL support", "no"); if (PHP_PHAR_NATIVE_SSL != "no") { PHP_PHAR = PHP_PHAR_NATIVE_SSL; - PHP_PHAR_SHARED = PHP_PHAR_NATIVE_SSL_SHARED; } if (PHP_PHAR != "no") { EXTENSION("phar", "dirstream.c func_interceptors.c phar.c phar_object.c phar_path_check.c stream.c tar.c util.c zip.c"); - if (PHP_PHAR_SHARED) { + if (PHP_PHAR_SHARED | (PHP_PHAR_NATIVE_SSL_SHARED && PHP_SNAPSHOT_BUILD == "no")) { ADD_FLAG("CFLAGS_PHAR", "/D COMPILE_DL_PHAR "); } if (PHP_PHAR_NATIVE_SSL != "no") { -- cgit v1.2.1