diff options
author | ale <ale@FreeBSD.org> | 2007-05-25 14:27:08 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2007-05-25 14:27:08 +0800 |
commit | 484a0c17bca5871005149cb66684085c804e231e (patch) | |
tree | 1a21d7b33160db524c5f801a9e3bdc3743a6bb41 /lang/php5/Makefile.ext | |
parent | f7fb2462d471fa62f96f2e81ab3442fc92a288ce (diff) | |
download | freebsd-ports-gnome-484a0c17bca5871005149cb66684085c804e231e.tar.gz freebsd-ports-gnome-484a0c17bca5871005149cb66684085c804e231e.tar.zst freebsd-ports-gnome-484a0c17bca5871005149cb66684085c804e231e.zip |
- Mark php5-mbstring BROKEN on amd64 with FreeBSD 5
- Drop FreeBSD 4 bits
Diffstat (limited to 'lang/php5/Makefile.ext')
-rw-r--r-- | lang/php5/Makefile.ext | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/php5/Makefile.ext b/lang/php5/Makefile.ext index c248c1dc91dc..7b8d1add6712 100644 --- a/lang/php5/Makefile.ext +++ b/lang/php5/Makefile.ext @@ -556,6 +556,10 @@ CONFIGURE_ARGS+=--enable-gd-jis-conv .endif .if ${PHP_MODNAME} == "mbstring" +. if ${OSVERSION} < 600000 && ${ARCH} == "amd64" +BROKEN= Doesn't build on AMD64 with FreeBSD 5.x (varargs issue) +. endif + . if defined(WITHOUT_REGEX) CONFIGURE_ARGS+=--disable-mbregex . endif @@ -572,10 +576,6 @@ post-extract: .endif .if ${PHP_MODNAME} == "oci8" || ${PHP_MODNAME} == "pdo_oci" -. if ${OSVERSION} < 500000 -BROKEN= Doesn't work on FreeBSD 4.x -. endif - pre-configure: @cd ${WRKSRC}; \ for lib in ${LOCALBASE}/oracle8-client/lib/libclntsh /usr/lib/libpthread; do \ |