f8a924d51f
19 Jul 2018, PHP 7.1.20 - Core: . Fixed bug #76534 (PHP hangs on 'illegal string offset on string references with an error handler). (Laruence) . Fixed bug #76502 (Chain of mixed exceptions and errors does not serialize properly). (Nikita) - Date: . Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol) - exif: . Fixed bug #76423 (Int Overflow lead to Heap OverFlow in exif_thumbnail_extract of exif.c). (Stas) . Fixed bug #76557 (heap-buffer-overflow (READ of size 48) while reading exif data). (Stas) - FPM: . Fixed bug #73342 (Vulnerability in php-fpm by changing stdin to non-blocking). (Nikita) - GMP: . Fixed bug #74670 (Integer Underflow when unserializing GMP and possible other classes). (Nikita) - intl: . Fixed bug #76556 (get_debug_info handler for BreakIterator shows wrong type). (cmb) - mbstring: . Fixed bug #76532 (Integer overflow and excessive memory usage in mb_strimwidth). (MarcusSchwarz) - PGSQL: . Fixed bug #76548 (pg_fetch_result did not fetch the next row). (Anatol) - phpdbg: . Fix arginfo wrt. optional/required parameters. (cmb) - Reflection: . Fixed bug #76536 (PHP crashes with core dump when throwing exception in error handler). (Laruence) . Fixed bug #75231 (ReflectionProperty#getValue() incorrectly works with inherited classes). (Nikita) - Standard: . Fixed bug #76505 (array_merge_recursive() is duplicating sub-array keys). (Laruence) . Fixed bug #71848 (getimagesize with $imageinfo returns false). (cmb) - Win32: . Fixed bug #76459 (windows linkinfo lacks openbasedir check). (Anatol)
77 lines
2.2 KiB
Makefile
77 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.15 2018/07/20 13:23:46 taca Exp $
|
|
|
|
#
|
|
# We can't omit PKGNAME here to handle PKG_OPTIONS.
|
|
#
|
|
PKGNAME= php-${PHP_VERSION:S/RC/rc/}
|
|
CATEGORIES= lang
|
|
|
|
HOMEPAGE= http://www.php.net/
|
|
COMMENT= PHP Hypertext Preprocessor version 7.1
|
|
LICENSE= php
|
|
|
|
TEST_TARGET= test
|
|
|
|
USE_TOOLS+= gmake lex pkg-config
|
|
LIBTOOL_OVERRIDE= # empty
|
|
PHP_CHECK_INSTALLED= No
|
|
|
|
PHP_VERSIONS_ACCEPTED= 71
|
|
|
|
.include "Makefile.php"
|
|
|
|
CGIDIR= ${PREFIX}/libexec/cgi-bin
|
|
EGDIR= ${PREFIX}/share/examples/php
|
|
MESSAGE_SUBST+= CGIDIR=${CGIDIR}
|
|
|
|
CONFIGURE_ENV+= lt_cv_path_SED=${SED:Q}
|
|
MAKE_ENV+= INSTALL_ROOT=${DESTDIR}
|
|
|
|
CONF_FILES= ${EGDIR}/php.ini-production ${PKG_SYSCONFDIR}/php.ini
|
|
PLIST_SUBST+= PHPEXTDIR="${PHP_EXTENSION_DIR}"
|
|
|
|
SUBST_CLASSES+= path
|
|
SUBST_MESSAGE.path= Fixing common paths.
|
|
SUBST_STAGE.path= pre-configure
|
|
SUBST_FILES.path= ext/phar/phar/phar.php
|
|
SUBST_FILES.path+= php.ini-development php.ini-production run-tests.php
|
|
SUBST_FILES.path+= sapi/cgi/Makefile.frag
|
|
SUBST_SED.path= -e 's,@CGIDIR@,${CGIDIR},g'
|
|
SUBST_SED.path+= -e 's,@PREFIX@,${PREFIX},g'
|
|
|
|
INSTALLATION_DIRS+= ${CGIDIR} ${PHP_EXTENSION_DIR} ${EGDIR} share/php
|
|
|
|
# segfault generating phar.phar for i386 & SPARC
|
|
# revisit this if builtin PCRE is updated beyond PCRE1 8.38
|
|
# https://bugs.php.net/bug.php?id=73880
|
|
.if ${MACHINE_ARCH} != "x86_64"
|
|
CONFIGURE_ARGS+= --without-pcre-jit
|
|
.endif
|
|
|
|
# segfaults when buidling with many compilers
|
|
# https://bugs.php.net/bug.php?id=74527
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CONFIGURE_ARGS+= --disable-gcc-global-regs
|
|
.endif
|
|
|
|
# Make sure modules can link correctly
|
|
.if ${OPSYS} == "Darwin"
|
|
INSTALL_UNSTRIPPED= yes
|
|
.endif
|
|
|
|
# Darwin < 9 (Mac OS X < 10.5 "Leopard") doesn't have gethostuuid(2)
|
|
# and lacks the zone memory allocator
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
|
|
CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WITHOUT_ZONEMALLOC
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php
|
|
${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php
|
|
cd ${WRKSRC}; ${INSTALL_DATA} php.ini-development php.ini-production \
|
|
${DESTDIR}${EGDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/php.gif ${DESTDIR}${PREFIX}/share/php
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|