diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2016-02-16 15:38:21 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2016-02-16 15:38:21 +0000 |
commit | 8179616202626383d2839246193df1c99a13b0bb (patch) | |
tree | 5bce3c8b83a8f89260e582d16ee31b21b76c2768 | |
parent | 968cf7b2cd55a9ed5159660527d70f259244dcea (diff) | |
download | ports-8179616202626383d2839246193df1c99a13b0bb.tar.gz ports-8179616202626383d2839246193df1c99a13b0bb.zip |
- Fix mysql[nd] library handling in php modules logic.
Reported by: fluffy
Notes
Notes:
svn path=/head/; revision=409000
-rw-r--r-- | lang/php70/Makefile | 2 | ||||
-rw-r--r-- | lang/php70/Makefile.ext | 24 |
2 files changed, 14 insertions, 12 deletions
diff --git a/lang/php70/Makefile b/lang/php70/Makefile index c35d83b5004d..68eabe0f005d 100644 --- a/lang/php70/Makefile +++ b/lang/php70/Makefile @@ -3,7 +3,7 @@ PORTNAME= php70 PORTVERSION= 7.0.3 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions DISTNAME= php-${PORTVERSION} diff --git a/lang/php70/Makefile.ext b/lang/php70/Makefile.ext index 1f449fa43724..ae25af4718fa 100644 --- a/lang/php70/Makefile.ext +++ b/lang/php70/Makefile.ext @@ -239,17 +239,6 @@ CONFIGURE_ARGS+=--with-pdo-firebird=${LOCALBASE} USES+= firebird USE_PHP= pdo USE_PHP_BUILD= yes - -.endif - -.if ${PHP_MODNAME} == "pdo_mysql" -CONFIGURE_ARGS+=--with-pdo-mysql=mysqlnd -USE_PHP=pdo -USE_PHP_BUILD= yes -.else -CONFIGURE_ARGS+=--with-pdo-mysql=${LOCALBASE} \ - --with-zlib-dir=/usr -USE_MYSQL= yes .endif .if ${PHP_MODNAME} == "pdo_odbc" @@ -546,6 +535,19 @@ USE_MYSQL= yes . endif .endif +.if ${PHP_MODNAME} == "pdo_mysql" +USE_PHP=pdo +USE_PHP_BUILD= yes +. if ${PORT_OPTIONS:MMYSQLND} +CONFIGURE_ARGS+=--with-pdo-mysql=mysqlnd +USE_PHP+= mysqli +. else +CONFIGURE_ARGS+=--with-pdo-mysql=${LOCALBASE} \ + --with-zlib-dir=/usr +USE_MYSQL= yes +. endif +.endif + .if ${PHP_MODNAME} == "openssl" || ${PHP_MODNAME} == "sqlite3" post-extract: @${MV} ${WRKSRC}/config0.m4 ${WRKSRC}/config.m4 |