sniper Sun Oct 9 16:33:10 2005 EDT Modified files: /php-src/ext/ftp config.m4 Log: - Fixed bug #34796 (missing SSL linking in ext/ftp when configured as shared) http://cvs.php.net/diff.php/php-src/ext/ftp/config.m4?r1=1.7&r2=1.8&ty=u Index: php-src/ext/ftp/config.m4 diff -u php-src/ext/ftp/config.m4:1.7 php-src/ext/ftp/config.m4:1.8 --- php-src/ext/ftp/config.m4:1.7 Tue Mar 12 11:18:33 2002 +++ php-src/ext/ftp/config.m4 Sun Oct 9 16:33:09 2005 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.7 2002/03/12 16:18:33 sas Exp $ +dnl $Id: config.m4,v 1.8 2005/10/09 20:33:09 sniper Exp $ dnl PHP_ARG_ENABLE(ftp,whether to enable FTP support, @@ -8,4 +8,6 @@ if test "$PHP_FTP" = "yes"; then AC_DEFINE(HAVE_FTP,1,[Whether you want FTP support]) PHP_NEW_EXTENSION(ftp, php_ftp.c ftp.c, $ext_shared) + PHP_SETUP_OPENSSL(FTP_SHARED_LIBADD) + PHP_SUBST(FTP_SHARED_LIBADD) fi
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php