2005-12-03 19:53:57 +01:00
|
|
|
# $NetBSD: Makefile.php,v 1.15 2005/12/03 18:53:57 jdolecek Exp $
|
2004-11-04 19:38:55 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
.include "../../lang/php5/Makefile.common"
|
|
|
|
|
2004-12-17 08:36:13 +01:00
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../lang/php5/distinfo
|
|
|
|
|
2004-11-04 19:38:55 +01:00
|
|
|
BUILD_DEFS= USE_INET6
|
|
|
|
|
|
|
|
USE_LIBTOOL= YES
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
|
|
|
|
CONFIGURE_ENV+= EXTENSION_DIR="${PREFIX}/${PHP_EXTENSION_DIR}"
|
|
|
|
|
|
|
|
PHP_EXTENSION_DIR= lib/php/20040412
|
|
|
|
PLIST_SUBST+= PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
|
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
2004-12-27 21:20:23 +01:00
|
|
|
CONFIGURE_ARGS+= --with-config-file-path=${PKG_SYSCONFDIR}
|
2005-10-16 14:06:05 +02:00
|
|
|
|
2004-11-04 19:38:55 +01:00
|
|
|
CONFIGURE_ARGS+= --with-regex=system
|
|
|
|
|
|
|
|
CONFIGURE_ARGS+= --without-mysql
|
2005-04-08 22:58:49 +02:00
|
|
|
CONFIGURE_ARGS+= --without-sqlite
|
2004-11-04 19:38:55 +01:00
|
|
|
CONFIGURE_ARGS+= --without-iconv
|
|
|
|
|
|
|
|
CONFIGURE_ARGS+= --enable-memory-limit
|
|
|
|
CONFIGURE_ARGS+= --enable-track-vars
|
|
|
|
|
|
|
|
CONFIGURE_ARGS+= --disable-posix
|
|
|
|
CONFIGURE_ARGS+= --disable-dom
|
2005-12-03 19:53:57 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-pdo
|
2004-11-04 19:38:55 +01:00
|
|
|
|
|
|
|
CONFIGURE_ARGS+= --enable-xml
|
|
|
|
CONFIGURE_ARGS+= --with-libxml-dir=${PREFIX}
|
|
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
|
|
|
2005-11-11 08:10:06 +01:00
|
|
|
# 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].*//}
|
2005-10-19 20:05:06 +02:00
|
|
|
PKG_SUPPORTED_OPTIONS+= inet6 ssl
|
|
|
|
PKG_SUGGESTED_OPTIONS+= ssl
|
2005-05-31 12:01:36 +02:00
|
|
|
|
2004-11-04 19:38:55 +01:00
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
2005-05-31 12:01:36 +02:00
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
|
|
.endif
|
2005-10-19 20:05:06 +02:00
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
|
|
.endif
|