b322bdf023
* pkgsrc change: enable readline PKG_OPTIONS default. 03 Aug 2017 PHP 7.0.22 - Core: . Fixed bug #74832 (Loading PHP extension with already registered function name leads to a crash). (jpauli) . Fixed bug #74780 (parse_url() borken when query string contains colon). (jhdxr) . Fixed bug #74761 (Unary operator expected error on some systems). (petk) . Fixed bug #73900 (Use After Free in unserialize() SplFixedArray). (nikic) . Fixed bug #74913 (fixed incorrect poll.h include). (petk) . Fixed bug #74906 (fixed incorrect errno.h include). (petk) - Date: . Fixed bug #74852 (property_exists returns true on unknown DateInterval property). (jhdxr) - OCI8: . Fixed bug #74625 (Integer overflow in oci_bind_array_by_name). (Ingmar Runge) - Opcache: . Fixed bug #74840 (Opcache overwrites argument of GENERATOR_RETURN within finally). (Bob) - PDO: . Fixed bug #69356 (PDOStatement::debugDumpParams() truncates query). (Adam Baratz) - SPL: . Fixed bug #73471 (PHP freezes with AppendIterator). (jhdxr) - SQLite3: . Fixed bug #74883 (SQLite3::__construct() produces "out of memory" exception with invalid flags). (Anatol) - Wddx: . Fixed bug #73173 (huge memleak when wddx_unserialize). (tloi at fortinet dot com) - zlib: . Fixed bug #73944 (dictionary option of inflate_init() does not work). (wapmorgan)
96 lines
2.5 KiB
PHP
96 lines
2.5 KiB
PHP
# $NetBSD: Makefile.php,v 1.7 2017/08/04 23:07:28 taca Exp $
|
|
# used by lang/php70/Makefile
|
|
# used by www/ap-php/Makefile
|
|
# used by www/php-fpm/Makefile
|
|
|
|
# PHP bug #74526 - segfaults on build with GCC 4.8.5 i386
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
GCC_REQD+= 4.9
|
|
.endif
|
|
|
|
.include "../../lang/php70/Makefile.common"
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../lang/php70/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../lang/php70/patches
|
|
|
|
USE_LIBTOOL= YES
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= YES
|
|
BUILD_DEFS+= VARBASE
|
|
PLIST_VARS+= dtrace
|
|
|
|
CONFIGURE_ENV+= EXTENSION_DIR="${PREFIX}/${PHP_EXTENSION_DIR}"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-config-file-path=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --with-config-file-scan-dir=${PKG_SYSCONFDIR}/php.d
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
|
|
CONFIGURE_ARGS+= --without-mysqli
|
|
CONFIGURE_ARGS+= --without-iconv
|
|
CONFIGURE_ARGS+= --without-pear
|
|
#CONFIGURE_ARGS+= --without-intl
|
|
|
|
CONFIGURE_ARGS+= --disable-posix
|
|
CONFIGURE_ARGS+= --disable-opcache
|
|
CONFIGURE_ARGS+= --disable-pdo
|
|
CONFIGURE_ARGS+= --disable-json
|
|
|
|
CONFIGURE_ARGS+= --enable-cgi
|
|
CONFIGURE_ARGS+= --enable-mysqlnd
|
|
CONFIGURE_ARGS+= --enable-xml
|
|
CONFIGURE_ARGS+= --with-libxml-dir=${PREFIX}
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.${PHP_PKG_PREFIX}
|
|
PKG_SUPPORTED_OPTIONS+= inet6 ssl maintainer-zts readline
|
|
PKG_SUGGESTED_OPTIONS+= inet6 ssl readline
|
|
|
|
.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" || ${OPSYS} == "FreeBSD"
|
|
PKG_SUPPORTED_OPTIONS+= dtrace
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
. if ${OPSYS} == "SunOS"
|
|
CONFIGURE_ARGS+= --with-openssl=yes
|
|
LIBS.SunOS+= -lcrypto
|
|
. else
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
. endif
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmaintainer-zts)
|
|
CONFIGURE_ARGS+= --enable-maintainer-zts
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mreadline)
|
|
USE_GNU_READLINE= yes
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.readline}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-readline
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdtrace)
|
|
PLIST.dtrace= yes
|
|
CONFIGURE_ARGS+= --enable-dtrace
|
|
|
|
# See https://bugs.php.net/bug.php?id=61268
|
|
INSTALL_MAKE_FLAGS+= -r
|
|
.endif
|
|
|
|
DL_AUTO_VARS= yes
|
|
.include "../../mk/dlopen.buildlink3.mk"
|