mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
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]
18 lines
384 B
JavaScript
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.");
|
|
}
|