From: Anatol Belski Date: Fri, 8 Jan 2016 07:07:15 +0000 (+0100) Subject: allow static build of ext/ftp X-Git-Tag: php-7.0.3RC1~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=caae1191da3ad98f3b5cd3b1d144d8fe3341d722;p=php allow static build of ext/ftp --- diff --git a/ext/ftp/config.w32 b/ext/ftp/config.w32 index 0df5f3c609..b09d688180 100644 --- a/ext/ftp/config.w32 +++ b/ext/ftp/config.w32 @@ -1,11 +1,11 @@ // $Id$ // vim:ft=javascript -ARG_ENABLE("ftp", "ftp support", "yes"); +ARG_ENABLE("ftp", "ftp support", "no"); -if (PHP_FTP == "yes") { +if (PHP_FTP != "no") { - EXTENSION("ftp", "php_ftp.c ftp.c", true); + EXTENSION("ftp", "php_ftp.c ftp.c"); if (CHECK_HEADER_ADD_INCLUDE("openssl/ssl.h", "CFLAGS_FTP") && CHECK_LIB("ssleay32.lib", "ftp", PHP_FTP) &&