forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changelog: CHANGES IN Mini-XML 2.9 - mxmlLoad* did not correctly load value nodes with MXML_NO_CALLBACK or MXML_TEXT_CALLBACK (Bug #502) CHANGES IN Mini-XML 2.8 - Now call docsetutil using xcrun on OS X (Bug #458) - mxmldoc did not escape special HTML characters inside @code foo@ comments. - Fixed a memory leak in mxmlElementDeleteAttr (Bug #452) - Added MXML_MAJOR/MINOR_VERSION definitions to mxml.h (Bug $461) - Fixed a bug reading UTF-16 characters from a file (Bug #454) - Fixed a memory leak when loading invalid XML (Bug #496) - Fixed an XML fragment loading problem (Bug #494) CHANGES IN Mini-XML 2.7 - Added 64-bit configurations to the VC++ project files (STR #129) - Fixed conformance of mxmldoc's HTML and CSS output. - Added data accessor ("get") functions and made the mxml_node_t and mxml_index_t structures private but still available in the Mini-XML header to preserve source compatibility (STR #118) - Updated the source headers to reference the Mini-XML license and its exceptions to the LGPL2 (STR #108) - Fixed a memory leak when loading a badly-formed XML file (STR #121) - Added a new mxmlFindPath() function to find the value node of a named element (STR #110) - Building a static version of the library did not work on Windows (STR #112) - The shared library did not include a destructor for the thread- specific data key on UNIX-based operating systems (STR #103) - mxmlLoad* did not error out on XML with multiple root nodes (STR #101) - Fixed an issue with the _mxml_vstrdupf function (STR #107) - mxmlSave* no longer write all siblings of the passed node, just that node and its children (STR #109)
- Loading branch information
nros
committed
Mar 8, 2016
1 parent
6ac546b
commit 4554d76
Showing
4 changed files
with
48 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
# $NetBSD: Makefile,v 1.4 2012/10/25 06:56:08 asau Exp $ | ||
# | ||
# $NetBSD: Makefile,v 1.5 2016/03/08 13:50:46 nros Exp $ | ||
|
||
DISTNAME= mxml-2.6 | ||
DISTNAME= mxml-2.9 | ||
CATEGORIES= textproc | ||
MASTER_SITES= ftp://ftp.easysw.com/pub/mxml/2.6/ | ||
MASTER_SITES= http://www.msweet.org/files/project3/ | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= http://www.minixml.org/ | ||
COMMENT= Small XML parsing library | ||
LICENSE= gnu-lgpl-v2 | ||
|
||
GNU_CONFIGURE= yes | ||
USE_LANGUAGES= c c++ | ||
USE_LIBTOOL= yes | ||
|
||
PKGCONFIG_OVERRIDE+= mxml.pc.in | ||
PKGCONFIG_OVERRIDE+= mxml.pc | ||
PKGCONFIG_OVERRIDE_STAGE=post-configure | ||
|
||
INSTALL_MAKE_FLAGS+= BUILDROOT=${DESTDIR} | ||
|
||
.include "options.mk" | ||
|
||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
$NetBSD: distinfo,v 1.4 2015/11/04 01:59:41 agc Exp $ | ||
$NetBSD: distinfo,v 1.5 2016/03/08 13:50:46 nros Exp $ | ||
|
||
SHA1 (mxml-2.6.tar.gz) = df180bd2e3890c97fa8a05dd131f9285468cffe1 | ||
RMD160 (mxml-2.6.tar.gz) = 6b1d1503880841431014b54d86430ed78201b6f2 | ||
SHA512 (mxml-2.6.tar.gz) = ca66a18a44ad8b6a204ed2130107c73c746fafd7925fd229fed9ba56f4c1654c5d289c08954eb102941d1b2a0c164c1174e169d472b7867c0cb3d0822616219b | ||
Size (mxml-2.6.tar.gz) = 254455 bytes | ||
SHA1 (patch-aa) = 9997c738df144c0825942c113d40988078cdea47 | ||
SHA1 (patch-ab) = 5518b4ac561a2ca26da5666caead9745729475b3 | ||
SHA1 (mxml-2.9.tar.gz) = a3d9c1f8cf8c7f85d76bb6954af1888d55f926f0 | ||
RMD160 (mxml-2.9.tar.gz) = 41cda23eb32e7883109be3cdeaa968ab787e32f1 | ||
SHA512 (mxml-2.9.tar.gz) = 819c506ea43198de07a90d7473f29c9edc7f638638b5a1b215d88ac635b4f4f37441d8a760ce356f7d4bfb14a4f504c304d0e33345f69ecd145db50350e50ad7 | ||
Size (mxml-2.9.tar.gz) = 264379 bytes | ||
SHA1 (patch-aa) = c728536a8813e455579a8aa816adcdb575063079 | ||
SHA1 (patch-configure) = 250eb883c8c6c44e223e31f55e669e74d3269888 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters