mirror of
https://github.com/php/php-src.git
synced 2024-12-30 20:23:28 +08:00
10 lines
183 B
Plaintext
10 lines
183 B
Plaintext
|
// $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');
|
||
|
}
|