7ef07cee82
Release Notes - Xerces-C++ - Version 3.2.1 ** Bug * [XERCESC-2114] - Link failure with Xalan-C * [XERCESC-2119] - warning C4251: 'xercesc_3_2::TranscodeToStr::fString': class 'xercesc_3_2::ArrayJanitor<XMLByte>' needs to have dll-interface to be used by clients of class 'xercesc_3_2::TranscodeToStr' * [XERCESC-2121] - xercesc-3.2.0 fails to configure with cmake, gnuiconv on Solaris. * [XERCESC-2122] - CMake: wrong substitutions in pkg-config file * [XERCESC-2123] - Tests sometimes fail when run in parallel, due to race conditions * [XERCESC-2124] - Typo in XMLUni::fgDOMDisallowDoctype XMLCh array * [XERCESC-2125] - CMake variable for nothreads does not match generated config define * [XERCESC-2130] - UTF16 Surrgate values 0xD800-0xDFFF can not longer be written with xerces 3.2.0 (e.g. emoticons) * [XERCESC-2137] - CMake Build Doesn't Activate XERCES_MFC_SUPPORT ** Improvement * [XERCESC-2132] - cmake: Add the ability to force the specific XMLCh type to use * [XERCESC-2134] - Remove non-functional Win32MsgLoader code * [XERCESC-2136] - Add support for versioning sources and documentation automatically
37 lines
928 B
Makefile
37 lines
928 B
Makefile
# $NetBSD: Makefile,v 1.50 2018/03/11 17:59:01 wiz Exp $
|
|
|
|
DISTNAME= xerces-c-3.2.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=xerces/c/3/sources/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://xerces.apache.org/
|
|
COMMENT= Validating C++ XML parser with DOM and SAX support
|
|
LICENSE= apache-2.0
|
|
|
|
USE_LANGUAGES= c c++11
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
PKGCONFIG_OVERRIDE= xerces-c.pc.in
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --without-curl
|
|
CONFIGURE_ARGS+= --without-icu
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PLIST_VARS+= iconv gnuiconv macunicode
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
PLIST.macunicode= yes
|
|
.elif ${OPSYS} == "SunOS"
|
|
PLIST.iconv= yes
|
|
CONFIGURE_ARGS+= --enable-transcoder-iconv
|
|
.else
|
|
PLIST.gnuiconv= yes
|
|
CONFIGURE_ARGS+= --enable-transcoder-gnuiconv
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
LDFLAGS+= -liconv
|
|
.endif
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|