1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/ftp/config.w32
Peter Kokot f66feaec0f Sync HAVE_<extension> help texts (#15167)
This syncs all help texts of extension preprocessor macros to the same
style "Define to 1 if the PHP extension '<ext>' is available.".
[skip ci]
2024-08-02 01:41:47 +02:00

18 lines
384 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, 'Have FTP over SSL support');
}
AC_DEFINE('HAVE_FTP', 1, "Define to 1 if the PHP extension 'ftp' is available.");
}