mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
05b9b20ed8
Will follow up to internals@ shortly.
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
// $Id$
|
|
// vim:ft=javascript
|
|
|
|
ARG_ENABLE("ftp", "ftp support", "yes");
|
|
|
|
if (PHP_FTP == "yes") {
|
|
EXTENSION("ftp", "php_ftp.c ftp.c");
|
|
AC_DEFINE('HAVE_FTP', 1, 'Have FTP support');
|
|
}
|