diff options
author | markus <markus@FreeBSD.org> | 2004-12-02 06:33:51 +0800 |
---|---|---|
committer | markus <markus@FreeBSD.org> | 2004-12-02 06:33:51 +0800 |
commit | da28b4b58b2f3a8467acf72ee0ae821934750d51 (patch) | |
tree | 35407f17f10f5cca8742ae1e659b4c778e509a06 /net/dclib | |
parent | febab2db7b75ff3d1f980609590a341d238c4015 (diff) | |
download | freebsd-ports-gnome-da28b4b58b2f3a8467acf72ee0ae821934750d51.tar.gz freebsd-ports-gnome-da28b4b58b2f3a8467acf72ee0ae821934750d51.tar.zst freebsd-ports-gnome-da28b4b58b2f3a8467acf72ee0ae821934750d51.zip |
- Add patch to chase latest API-change in libxml2
- Bump PORTREVISION
Diffstat (limited to 'net/dclib')
-rw-r--r-- | net/dclib/Makefile | 1 | ||||
-rw-r--r-- | net/dclib/files/patch-dclib-core-cxml.cpp | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/net/dclib/Makefile b/net/dclib/Makefile index 53c5fb4aefc3..7fc49e34d397 100644 --- a/net/dclib/Makefile +++ b/net/dclib/Makefile @@ -8,6 +8,7 @@ PORTNAME= dclib PORTVERSION= 0.3.3 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.berlios.de/dcgui/ diff --git a/net/dclib/files/patch-dclib-core-cxml.cpp b/net/dclib/files/patch-dclib-core-cxml.cpp new file mode 100644 index 000000000000..d185d95f5b20 --- /dev/null +++ b/net/dclib/files/patch-dclib-core-cxml.cpp @@ -0,0 +1,23 @@ +--- dclib/core/cxml.cpp.orig Thu Aug 12 10:32:06 2004 ++++ dclib/core/cxml.cpp Wed Dec 1 23:14:00 2004 +@@ -149,10 +149,8 @@ + printf("UTF8Toisolat1 transcoding fail: '%s'\n",s); + else if ( res == -1 ) + printf("UTF8Toisolat1 fail: '%s'\n",s); +- else if ( res == 0 ) +- r = (char*)b; + else +- printf("CXml::xml_UTF8Toisolat1 error %d\n",res); ++ r = (char*)b; + + free(b); + +@@ -180,7 +178,7 @@ + + if ( res == -1 ) + printf("isolat1ToUTF8 fail: '%s'\n",s); +- else if ( res == 0 ) ++ else + r = (char*)b; + + free(b); |