1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00

Add support for zend multibyte.

PR:		ports/76527
Submitted by:	Shinsuke Matsui <poppen@karashi.org>
Strongly desired by:	Lapo Luchini <lapo@lapo.it>
This commit is contained in:
Alex Dupre 2005-06-14 20:38:26 +00:00
parent e2cce2e62c
commit 4107b871ca
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137461
3 changed files with 15 additions and 0 deletions

View File

@ -71,6 +71,7 @@ OPTIONS= REDIRECT "Enable force-cgi-redirect support" off \
OPTIONS= APACHE2 "Use apache 2.x instead of apache 1.3.x" off
.endif
OPTIONS+= DEBUG "Enable debug" off \
MULTIBYTE "Enable zend multibyte support" off \
IPV6 "Enable ipv6 support" on \
OPENSSL "Build static OpenSSL extension" off
@ -144,6 +145,10 @@ CONFIGURE_ARGS+=--enable-debug
EXT_DIR:= ${EXT_DIR}-debug
.endif
.if defined(WITH_MULTIBYTE)
CONFIGURE_ARGS+=--enable-zend-multibyte
.endif
PLIST_SUB+= SAPI_FILE=${SAPI_FILE}
.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)

View File

@ -76,6 +76,7 @@ OPTIONS= REDIRECT "Enable force-cgi-redirect support" off \
OPTIONS= APACHE2 "Use apache 2.x instead of apache 1.3.x" off
.endif
OPTIONS+= DEBUG "Enable debug" off \
MULTIBYTE "Enable zend multibyte support" off \
IPV6 "Enable ipv6 support" on
EXT_DIR= 20041030
@ -141,6 +142,10 @@ CONFIGURE_ARGS+=--enable-debug
EXT_DIR:= ${EXT_DIR}-debug
.endif
.if defined(WITH_MULTIBYTE)
CONFIGURE_ARGS+=--enable-zend-multibyte
.endif
PLIST_SUB+= SAPI_FILE=${SAPI_FILE}
.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)

View File

@ -76,6 +76,7 @@ OPTIONS= REDIRECT "Enable force-cgi-redirect support" off \
OPTIONS= APACHE2 "Use apache 2.x instead of apache 1.3.x" off
.endif
OPTIONS+= DEBUG "Enable debug" off \
MULTIBYTE "Enable zend multibyte support" off \
IPV6 "Enable ipv6 support" on
EXT_DIR= 20041030
@ -141,6 +142,10 @@ CONFIGURE_ARGS+=--enable-debug
EXT_DIR:= ${EXT_DIR}-debug
.endif
.if defined(WITH_MULTIBYTE)
CONFIGURE_ARGS+=--enable-zend-multibyte
.endif
PLIST_SUB+= SAPI_FILE=${SAPI_FILE}
.if ${OSVERSION} < 400014 || defined(WITHOUT_IPV6)