pkgsrc/lang/php53/Makefile.php
taca 2437e085ba Update php53 to 5.3.20.
20 Dec 2012, PHP 5.3.20

- Zend Engine:
  . Fixed bug #63635 (Segfault in gc_collect_cycles). (Dmitry)
  . Fixed bug #63512 (parse_ini_file() with INI_SCANNER_RAW removes quotes
    from value). (Pierrick)
  . Fixed bug #63468 (wrong called method as callback with inheritance).
    (Laruence)

- Core:
  . Fixed bug #63451 (config.guess file does not have AIX 7 defined,
    shared objects are not created). (kemcline at au1 dot ibm dot com)
  . Fixed bug #63377 (Segfault on output buffer).
    (miau dot jp at gmail dot com, Laruence)

- Apache2 Handler SAPI:
  . Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy)

- Date:
  . Fixed bug #63435 (Datetime::format('u') sometimes wrong by 1 microsecond).
    (Remi)

- Fileinfo:
  . Fixed bug #63248 (Load multiple magic files from a directory under Windows).
    (Anatoliy)
  . Fixed bug #63590 (Different results in TS and NTS under Windows).
    (Anatoliy)

- FPM:
  . Fixed bug #63581 (Possible null dereference and buffer overflow). (Remi)

- Imap:
  . Fixed bug #63126 (DISABLE_AUTHENTICATOR ignores array). (Remi)

- MySQLnd:
  . Fixed bug #63398 (Segfault when polling closed link). (Laruence)

- Reflection:
  . Fixed Bug #63614 (Fatal error on Reflection). (Laruence)

- SOAP
  . Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests).
    (John Jawed, Dmitry)
2013-01-07 14:23:57 +00:00

123 lines
3.8 KiB
PHP

# $NetBSD: Makefile.php,v 1.27 2013/01/07 14:23:57 taca Exp $
# used by lang/php53/Makefile
# used by www/ap-php/Makefile
.include "../../lang/php53/Makefile.common"
DISTINFO_FILE= ${.CURDIR}/../../lang/php53/distinfo
PATCHDIR= ${.CURDIR}/../../lang/php53/patches
USE_LIBTOOL= YES
USE_LANGUAGES= c c++
GNU_CONFIGURE= YES
BUILD_DEFS+= VARBASE
PLIST_VARS+= suhosin
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+= --with-regex=system
CONFIGURE_ARGS+= --without-mysql
CONFIGURE_ARGS+= --without-sqlite
#CONFIGURE_ARGS+= --without-sqlite3
CONFIGURE_ARGS+= --without-iconv
CONFIGURE_ARGS+= --without-pear
#CONFIGURE_ARGS+= --without-intl
CONFIGURE_ARGS+= --disable-posix
CONFIGURE_ARGS+= --disable-dom
CONFIGURE_ARGS+= --disable-pdo
CONFIGURE_ARGS+= --disable-json
CONFIGURE_ARGS+= --enable-cgi
CONFIGURE_ARGS+= --enable-xml
CONFIGURE_ARGS+= --with-libxml-dir=${PREFIX}
.include "../../textproc/libxml2/buildlink3.mk"
# Note: This expression is the same as ${PKGBASE}, but the latter is
# not defined yet, so we cannot use it here.
PKG_OPTIONS_VAR= PKG_OPTIONS.${PKGNAME:C/-[0-9].*//}
PKG_SUPPORTED_OPTIONS+= inet6 ssl maintainer-zts suhosin readline
PKG_SUGGESTED_OPTIONS+= inet6 ssl
#SUBST_CLASSES+= ini
#SUBST_STAGE.ini= post-patch
#SUBST_FILES.ini= php.ini-development
#SUBST_FILES.ini+= php.ini-production
#SUBST_SED.ini= -e "s|\\;include_path = \".:/php/includes\"|include_path = \".:${PREFIX}/lib/php\"|g"
#SUBST_MESSAGE.ini= Fixing default ini files.
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Msuhosin)
SUHOSIN_PHPVER= 5.3.9
. if ${SUHOSIN_PHPVER} != ${PHP_BASE_VERS} && ${PHP_BASE_VERS} != 5.3.20
PKG_FAIL_REASON+= "The suhosin patch is currently not available for"
PKG_FAIL_REASON+= "this version of PHP. You may have to wait until"
PKG_FAIL_REASON+= "an updated patch is released or temporarily"
PKG_FAIL_REASON+= "build this package without the suhosin option."
. else
PATCH_SITES= http://download.suhosin.org/
PATCHFILES+= suhosin-patch-${SUHOSIN_PHPVER}-0.9.10.patch.gz
PATCH_DIST_STRIP= -p1
PLIST.suhosin= yes
MESSAGE_SRC= ${.CURDIR}/../../lang/php53/MESSAGE
MESSAGE_SRC+= ${.CURDIR}/../../lang/php53/MESSAGE.suhosin
# quick fix to apply suhosin patch
SUBST_CLASSES+= suhosin-pre
SUBST_STAGE.suhosin-pre= pre-patch # post-extract
SUBST_FILES.suhosin-pre= sapi/litespeed/lsapi_main.c
SUBST_SED.suhosin-pre= -e "s|1997-2012|1997-2004|g"
SUBST_MESSAGE.suhosin-pre= Modify before applying suhosin-patch
# revert copyright year as original PHP
SUBST_CLASSES+= suhosin-post
SUBST_STAGE.suhosin-post= post-patch
SUBST_FILES.suhosin-post= sapi/litespeed/lsapi_main.c
SUBST_SED.suhosin-post= -e "s|1997-2004|1997-2012|g"
SUBST_SED.suhosin-post+= -e "s|1997-2011|1997-2012|g"
SUBST_MESSAGE.suhosin-post= Restore after applying suhosin-patch
. endif
.endif
.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
DL_AUTO_VARS= yes
.include "../../mk/dlopen.buildlink3.mk"