This is a major update, I couldn't find the relevant changecogs but the last one. A couple of bugfixes. pkgsrc note: Since base and plugins are seperate distfiles now, we could abandon the Makefile.common or at least part of its complexity. I'll leave this to the MAINTAINER. Also, I'd suggest to rip -plugins into parts - many are too exotic. (There are also some new which are not built, I've just kept status quo.)
17 lines
673 B
Text
17 lines
673 B
Text
$NetBSD: patch-ab,v 1.16 2009/04/07 16:27:08 drochner Exp $
|
|
|
|
--- src/af/util/xp/ut_iconv.cpp.orig 2008-04-06 17:32:28.000000000 +0200
|
|
+++ src/af/util/xp/ut_iconv.cpp
|
|
@@ -265,9 +265,11 @@ const char * ucs4Internal ()
|
|
#elif defined(_LIBICONV_H)
|
|
// libiconv seems to prefer UCS-4-INTERNAL to UCS-4BE and UCS-4LE
|
|
return "UCS-4-INTERNAL";
|
|
-#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
+#elif defined(__FreeBSD__) || defined(__OpenBSD__)
|
|
// we special case the BSDs since spelling just doesn't work
|
|
return "UCS4";
|
|
+#elif defined(__NetBSD__)
|
|
+ return "UCS-4";
|
|
#else
|
|
// general case, found by hub and dom
|
|
if (s_ucs4_internal == 0)
|