diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2006-04-22 10:28:31 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2006-04-22 10:28:31 +0000 |
commit | 471f0162243e9ebe6729f0a31ea91634c97bae54 (patch) | |
tree | 9ae90bdfd1a9d069087c2d0ba43853a31642447a /textproc/php-wddx | |
parent | 720c00e9ec6a00932ff5d0b8af27a2270bad6e84 (diff) | |
download | pkgsrc-471f0162243e9ebe6729f0a31ea91634c97bae54.tar.gz |
make build properly (now that the module contents are actually compiled)
and adjust to use libxml2 depends on PHP5
bump PKGREVISION
Diffstat (limited to 'textproc/php-wddx')
-rw-r--r-- | textproc/php-wddx/Makefile | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/textproc/php-wddx/Makefile b/textproc/php-wddx/Makefile index 247c88d42ee..a26dbb6fba3 100644 --- a/textproc/php-wddx/Makefile +++ b/textproc/php-wddx/Makefile @@ -1,13 +1,29 @@ -# $NetBSD: Makefile,v 1.7 2006/02/05 23:11:06 joerg Exp $ +# $NetBSD: Makefile,v 1.8 2006/04/22 10:28:31 jdolecek Exp $ MODNAME= wddx -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES+= textproc COMMENT= PHP extension for WDDX support -CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_PREFIX.expat} +CONFIGURE_ARGS+= --enable-${MODNAME}=shared,${BUILDLINK_DIR} -.include "../../lang/php/ext.mk" +USE_PHP_EXT_PATCHES= # defined + +# appease some PHP build assumpsions +CFLAGS+= -I${BUILDLINK_DIR}/include/libxml2 \ + -I${BUILDLINK_DIR}/include/php/ext/date/lib + + +.include "../../lang/php/phpversion.mk" + +# link against libxml2 on PHP5 (the code is using expat compat +# build wrapper) +.if ${PKG_PHP_VERSION} == 5 +.include "../../textproc/libxml2/buildlink3.mk" +.else .include "../../textproc/expat/buildlink3.mk" +.endif + +.include "../../lang/php/ext.mk" .include "../../mk/bsd.pkg.mk" |