php-src/ext/ftp/config.w32
Peter Kokot cf6bbdfb0c
Autotools: Improve ftp and mysqlnd SSL configure options (#15164)
This makes the configure log messages and help text more intuitive what
is being enabled and when.
2024-08-03 22:13:36 +02:00

18 lines
398 B
JavaScript

// vim:ft=javascript
ARG_ENABLE("ftp", "ftp support", "no");
if (PHP_FTP != "no") {
EXTENSION("ftp", "php_ftp.c ftp.c");
var ret = SETUP_OPENSSL("ftp", PHP_FTP);
if (ret >= 2) {
MESSAGE("Enabling SSL support for ext\\ftp");
AC_DEFINE('HAVE_FTP_SSL', 1, 'Define to 1 if FTP over SSL is enabled.');
}
AC_DEFINE('HAVE_FTP', 1, "Define to 1 if the PHP extension 'ftp' is available.");
}