mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
19 lines
354 B
Plaintext
19 lines
354 B
Plaintext
dnl $Id$
|
|
dnl config.m4 for extension ftp
|
|
dnl don't forget to call PHP_EXTENSION(ftp)
|
|
|
|
AC_MSG_CHECKING(for FTP support)
|
|
AC_ARG_WITH(ftp,
|
|
[ --with-ftp Include FTP support.],
|
|
[
|
|
if test "$withval" != "no"; then
|
|
AC_DEFINE(HAVE_FTP)
|
|
PHP_EXTENSION(ftp)
|
|
AC_MSG_RESULT(yes)
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
fi
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|