There is a little typo in the Makefile.ext file of lang/php53 port which broke dependenses for pdo_mysql extention. Fix: Use attached patch. Patch attached with submission follows: How-To-Repeat: pdo_mysql unconditionally depends on libmysql even if MySQLND option is on.
Responsible Changed From-To: freebsd-ports-bugs->flo Over to maintainer (via the GNATS Auto Assign Tool)
Author: flo Date: Wed Jul 18 07:40:41 2012 New Revision: 301070 URL: http://svn.freebsd.org/changeset/ports/301070 Log: - fix a typo which results in php53-pdo_mysql to always set USE_MYSQL - bump PORTREVISION of php53-pdo_mysql PR: ports/169959 Submitted by: Alexey Markov <redrat@mail.ru> Modified: head/databases/php53-pdo_mysql/Makefile (contents, props changed) head/lang/php53/Makefile.ext (contents, props changed) Modified: head/databases/php53-pdo_mysql/Makefile ============================================================================== --- head/databases/php53-pdo_mysql/Makefile Wed Jul 18 07:34:11 2012 (r301069) +++ head/databases/php53-pdo_mysql/Makefile Wed Jul 18 07:40:41 2012 (r301070) @@ -5,6 +5,8 @@ # $FreeBSD$ # +PORTREVISION= 1 + CATEGORIES= databases MASTERDIR= ${.CURDIR}/../../lang/php53 Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Wed Jul 18 07:34:11 2012 (r301069) +++ head/lang/php53/Makefile.ext Wed Jul 18 07:40:41 2012 (r301070) @@ -591,7 +591,7 @@ CONFIGURE_ARGS+=--with-pdo-odbc=unixODBC .endif .if ${PHP_MODNAME} == "pdo_mysql" -. if ${PORT_OPTIONS:MYSQLND} +. if ${PORT_OPTIONS:MMYSQLND} CONFIGURE_ARGS+=--with-pdo-mysql=mysqlnd USE_PHP+= mysql _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!