diff options
author | linimon <linimon@FreeBSD.org> | 2006-07-05 10:18:09 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2006-07-05 10:18:09 +0800 |
commit | fb67af18b21e550e6df94b2054e81c4a8ccc06f1 (patch) | |
tree | 1b7f634833f20b01eb331dbb7da5f0c0f4e3faa1 /Mk/bsd.php.mk | |
parent | f22bafe5ba52240f804ab7afc5295b8322233d10 (diff) | |
download | freebsd-ports-gnome-fb67af18b21e550e6df94b2054e81c4a8ccc06f1.tar.gz freebsd-ports-gnome-fb67af18b21e550e6df94b2054e81c4a8ccc06f1.tar.zst freebsd-ports-gnome-fb67af18b21e550e6df94b2054e81c4a8ccc06f1.zip |
* Change all bogus uses of BROKEN to IGNORE. Note: the BROKEN_WITH_*
forms are retained for compatibility but deprecated [1]
* Add sha256 to CHECKSUM_ALGORITHMS [2]
* Remove some whitespace [2]
* Add USE_SCONS and bsd.scons.mk for the Python-based SCons build system [3]
* Fix USE_LDCONFIG with non-default PREFIX [4]
* Add USE_WX and friends, and bsd.wx.mk, for common code for WxWidgets
support [5]
* Add 'make missing' to show missing dependencies [6]
* Fix DESKTOP_ENTRIES processing on 4.x [7]
PR: 92445 [1], 98206 [2], 98731 [3], 99370 [4], 89398 [5],
93601 [6], 98891 [7]
Submitted by: linimon [1], edwin [2], alex at foxybanana dot com [3],
gerald [4], flz [4], alepulver [5], alex at fafula dot com [6],
shaun [7]
Diffstat (limited to 'Mk/bsd.php.mk')
-rw-r--r-- | Mk/bsd.php.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Mk/bsd.php.mk b/Mk/bsd.php.mk index 5104f0a51e6b..58c409fd410f 100644 --- a/Mk/bsd.php.mk +++ b/Mk/bsd.php.mk @@ -18,7 +18,7 @@ # The port can set these options in its Makefile before bsd.ports.pre.mk: # # DEFAULT_PHP_VER=N - Use PHP version N if PHP is not yet installed. -# BROKEN_WITH_PHP=N - The port doesn't work with PHP version N. +# IGNORE_WITH_PHP=N - The port doesn't work with PHP version N. # USE_PHPIZE=yes - Use to build a PHP extension. # USE_PHPEXT=yes - Use to build, install and register a PHP extension. # USE_PHP_BUILD=yes - Set PHP also as a build dependency. @@ -70,10 +70,14 @@ PHP_SAPI?= "" .endif PHP_EXT_INC?= "" +# compatability shim .if defined(BROKEN_WITH_PHP) -. for VER in ${BROKEN_WITH_PHP} +IGNORE_WITH_PHP=${BROKEN_WITH_PHP} +.endif +.if defined(IGNORE_WITH_PHP) +. for VER in ${IGNORE_WITH_PHP} . if ${PHP_VER} == "${VER}" -BROKEN= Doesn't work with PHP version : ${PHP_VER} (Doesn't support PHP ${BROKEN_WITH_PHP}) +IGNORE= cannot install: doesn't work with PHP version : ${PHP_VER} (Doesn't support PHP ${IGNORE_WITH_PHP}) . endif . endfor .endif |