e9029bf48e
PHP 7.1.x builds upon 7.0.x, adding new features (so far) * Iterable type. * HTTP/2 Server Push Support in ext/curl & other ext/curl improvements * Fix inconsistent behavior in $this variable * Square bracket syntax for array destructuring assignment * Create closure from callable * More precise float values * Asynchronous Signal Handling (without ticks) in ext/pcntl. * Additional Context in pcntl_signal Handler NOTE: this is BETA, not suitable for production environment
22 lines
597 B
Text
22 lines
597 B
Text
# $NetBSD: Makefile.common,v 1.1 2016/08/04 14:09:03 jdolecek Exp $
|
|
# used by lang/php71/Makefile.php
|
|
# used by lang/php/ext.mk
|
|
# used by meta-pkgs/php71-extensions/Makefile
|
|
|
|
PHP_VERSION_REQD= 71
|
|
|
|
.include "../../lang/php/common.mk"
|
|
|
|
CATEGORIES+= www
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
|
|
|
# needed due to (broken?) configure checks in php-xmlrpc and php5-dom
|
|
CONFIGURE_ENV+= PHP_LIBXML_SHARED="1"
|
|
|
|
EXTRACT_USING= gtar
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
# configure test gets confused by wrappers dropping -R /usr/lib
|
|
CONFIGURE_ARGS+= php_cv_cc_dashr=no
|
|
.endif
|