diff options
author | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2019-09-20 19:24:23 +0000 |
---|---|---|
committer | Torsten Zuehlsdorff <tz@FreeBSD.org> | 2019-09-20 19:24:23 +0000 |
commit | 9fcf51a99f3619b210b0810ff83eeba6034d159e (patch) | |
tree | bd993ad9dc1f604330cf831839cea2ab19fff90f | |
parent | devel/p5-X-Tiny: upgrade 0.13 -> 0.20 (diff) |
lang/php74: add module hash to PHP_EXT_INC
The hash module is now part of the core and can't be disabled anymore.
Therefore add it to the list
Reported by: ale
Sponsored by: PHP Update Service
Differential Revision: https://reviews.freebsd.org/D21349
Notes
Notes:
svn path=/head/; revision=512430
-rw-r--r-- | lang/php74/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/php74/Makefile b/lang/php74/Makefile index bb611724a990..6817b128a2dc 100644 --- a/lang/php74/Makefile +++ b/lang/php74/Makefile @@ -165,7 +165,7 @@ post-build: @${ECHO_CMD} "PHP_VER=74" > ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_VERSION=${PORTVERSION}" >> ${WRKDIR}/php.conf @${ECHO_CMD} "PHP_SAPI=${PHP_SAPI}" >> ${WRKDIR}/php.conf - @${ECHO_CMD} "PHP_EXT_INC=pcre spl" >> ${WRKDIR}/php.conf + @${ECHO_CMD} "PHP_EXT_INC=hash pcre spl" >> ${WRKDIR}/php.conf @${ECHO_CMD} -n "PHP_EXT_DIR=" >> ${WRKDIR}/php.conf @${SH} ${WRKSRC}/scripts/php-config --extension-dir | ${SED} -ne 's,^${PREFIX}/lib/php/,,p' >> ${WRKDIR}/php.conf |