You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
360 B

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,1,[ ])
PHP_EXTENSION(ftp)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
],[
AC_MSG_RESULT(no)
])