4e46d7fd4f
PHP 7.0.0 comes with a new version of the Zend Engine, numerous improvements and new features such as * Improved performance: PHP 7 is up to twice as fast as PHP 5.6 * Significantly reduced memory usage * Abstract Syntax Tree * Consistent 64-bit support * Improved Exception hierarchy * Many fatal errors converted to Exceptions * Secure random number generator * Removed old and unsupported SAPIs and extensions * The null coalescing operator (??) * Return and Scalar Type Declarations * Anonymous Classes * Zero cost asserts
22 lines
593 B
Text
22 lines
593 B
Text
# $NetBSD: Makefile.common,v 1.1 2015/12/06 15:17:31 taca Exp $
|
|
# used by lang/php70/Makefile.php
|
|
# used by lang/php/ext.mk
|
|
# used by meta-pkgs/php70-extensions/Makefile
|
|
|
|
PHP_VERSION_REQD= 70
|
|
|
|
.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
|