01e3af51fe
changes: Portability fixes: - Windows (Rob Richards) - getaddrinfo on Windows (Kolja Nowak - Rob Richards) - icc warnings (Kjartan Maraas) - --with-minimum compilation fixes (William Brack) - error case handling fix on Solaris (Albert Chin) - don't use 'list' as parameter name reported by Samuel Diaz Garcia - more old Unices portability fixes (Albert Chin) - MinGW compilation (Mark Junker) - HP-UX compiler warnings (Rick Jones) Code cleanup: - xmlReportError (Adrian Mouat) - remove xmlBufferClose (Geert Jansen) - unreachable code (Oleksandr Kononenko) - refactoring parsing code (Bjorn Reese) Bug fixes: - xmlBuildRelativeURI and empty path (William Brack) - combinatory explosion and performances in regexp code - leak in xmlTextReaderReadString() - xmlStringLenDecodeEntities problem (Massimo Morara) - Identity Constraints bugs and a segfault (Kasimier Buchcik) - XPath pattern based evaluation bugs (DV & Kasimier) - xmlSchemaContentModelDump() memory leak (Kasimier) - potential leak in xmlSchemaCheckCSelectorXPath() - xmlTextWriterVSprintf() misuse of vsnprintf (William Brack) - XHTML serialization fix (Rob Richards) - CRLF split problem (William) - issues with non-namespaced attributes in xmlAddChild(), xmlAddNextSibling() and xmlAddPrevSibling() (Rob Richards) - HTML parsing of script - Python must not output to stdout (Nic Ferrier) - exclusive C14N namespace visibility (Aleksey Sanin) - XSD dataype totalDigits bug (Kasimier Buchcik) - error handling when writing to an xmlBuffer (Rob Richards) - runtest schemas error not reported (Hisashi Fujinaka) - signed/unsigned problem in date/time code (Albert Chin) - fix XSI driven XSD validation (Kasimier) - parsing of xs:decimal (Kasimier) - fix DTD writer output (Rob Richards) - leak in xmlTextReaderReadInnerXml (Gary Coady) - regexp bug affecting schemas (Kasimier) - configuration of runtime debugging (Kasimier) - xmlNodeBufGetContent bug on entity refs (Oleksandr Kononenko) - xmlRegExecPushString2 bug (Sreeni Nair) - compilation and build fixes (Michael Day) - removed dependancies on xmlSchemaValidError (Kasimier) - bug with <xml:foo/> - more XPath pattern based evaluation fixes (Kasimier) Improvements: - XSD Schemas redefinitions/restrictions (Kasimier Buchcik) - node copy checks and fix for attribute (Rob Richards) - counted transition bug in regexps - ctxt->standalone = -2 to indicate no standalone attribute was found - add xmlSchemaSetParserStructuredErrors() (Kasimier Buchcik) - add xmlTextReaderSchemaValidateCtxt() to API (Kasimier) - handle gzipped HTTP resources (Gary Coady) - add htmlDocDumpMemoryFormat. (Rob Richards) Documentation: - typo (Michael Day) - libxml man page (Albert Chin) - save function to XML buffer (Geert Jansen) - small doc fix (Aron Stansvik)
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.76 2006/01/14 07:50:52 recht Exp $
|
|
|
|
DISTNAME= libxml2-2.6.23
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libxml2/2.6/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
#MASTER_SITES= ftp://xmlsoft.org/
|
|
|
|
MAINTAINER= recht@NetBSD.org
|
|
HOMEPAGE= http://xmlsoft.org/
|
|
COMMENT= XML parser library from the GNOME project
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= yes
|
|
PKGCONFIG_OVERRIDE= libxml-2.0.pc.in
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv}
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ARGS+= --with-html-subdir=libxml2
|
|
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
|
|
|
|
# NetBSD-sparc64-1.6*'s f77 makes configure failing and as f77 is not
|
|
# needed for this package the following does no harm on other platforms.
|
|
CONFIGURE_ENV+= F77=${FALSE:Q}
|
|
|
|
MAKE_ENV+= PAX=${PAX:Q}
|
|
|
|
TEST_TARGET= check
|
|
|
|
SUBST_CLASSES+= cat
|
|
SUBST_STAGE.cat= pre-configure
|
|
SUBST_FILES.cat= catalog.c xmlcatalog.c
|
|
SUBST_SED.cat= -e "s,@@SGML_DEFAULT_CATALOG@@,${SGML_DEFAULT_CATALOG},g"
|
|
SUBST_SED.cat+= -e "s,@@XML_DEFAULT_CATALOG@@,${XML_DEFAULT_CATALOG},g"
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../textproc/xmlcatmgr/catalogs.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|