diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2003-09-13 07:23:36 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2003-09-13 07:23:36 +0000 |
commit | 8e9b787247771cb313b1f89303652d09f61206e0 (patch) | |
tree | d05917830176d0399af3875fbefc83ec34464ff0 /textproc/libxml2/Makefile | |
parent | 79386bc77e0802a4dc09c76842ca4fe9ca7d859b (diff) | |
download | pkgsrc-8e9b787247771cb313b1f89303652d09f61206e0.tar.gz |
disable threads - it's not clear this is necessary (it's only used
for some optional internal locking), and this library needs to be usable
by nonthreaded programs too, like php4-domxml
bump PKGREVISION for this; buildlink not changed, since library users
generally don't care about this
Diffstat (limited to 'textproc/libxml2/Makefile')
-rw-r--r-- | textproc/libxml2/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile index 4b763a0996e..17fbf4ba163 100644 --- a/textproc/libxml2/Makefile +++ b/textproc/libxml2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2003/08/29 11:22:21 xtraeme Exp $ +# $NetBSD: Makefile,v 1.36 2003/09/13 07:23:36 jdolecek Exp $ DISTNAME= libxml2-${LIBXML_VERSION} CATEGORIES= textproc @@ -16,6 +16,7 @@ LIBTOOL_OVERRIDE= ${WRKSRC}/libtool PKGCONFIG_OVERRIDE= ${WRKSRC}/libxml-2.0.pc.in LIBXML_VERSION= 2.5.10 +PKGREVISION= 1 PLIST_SUBST+= LIBXML_VERSION=${LIBXML_VERSION} GNU_CONFIGURE= yes @@ -23,6 +24,10 @@ CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv} CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc CONFIGURE_ARGS+= --without-python +# Don't use threads - it's not apparent whether it's necessary or not, +# and this library needs to be usable by non-threaded applications too +CONFIGURE_ARGS+= --without-threads + MAKE_ENV+= PAX=${PAX:Q} TEST_TARGET= check @@ -34,5 +39,4 @@ CFLAGS+= -DXML_XML_DEFAULT_CATALOG=\"\\\"${XML_DEFAULT_CATALOG}\\\"\" .include "../../converters/libiconv/buildlink2.mk" .include "../../textproc/xmlcatmgr/catalogs.mk" -.include "../../mk/pthread.buildlink2.mk" .include "../../mk/bsd.pkg.mk" |