diff options
author | rh <rh> | 2000-11-27 14:26:17 +0000 |
---|---|---|
committer | rh <rh> | 2000-11-27 14:26:17 +0000 |
commit | b53b5eccd8e7b60592f1622aab5ac4baa6c52f2f (patch) | |
tree | e63b26ad98d15c666ad737d7da830044ddae6a73 /devel/GConf/patches/patch-ac | |
parent | ac4b1ea313390211f09ba265eeb6b25cab91303e (diff) | |
download | pkgsrc-b53b5eccd8e7b60592f1622aab5ac4baa6c52f2f.tar.gz |
Update GConf to 0.11. Changes include additional locale files, some
minor enhancements, and bugfixes. Most notably, GConf now compiles under
non-ELF architectures (tested under NetBSD-1.4.3/i386)
Diffstat (limited to 'devel/GConf/patches/patch-ac')
-rw-r--r-- | devel/GConf/patches/patch-ac | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/devel/GConf/patches/patch-ac b/devel/GConf/patches/patch-ac new file mode 100644 index 00000000000..19c2e89e2cb --- /dev/null +++ b/devel/GConf/patches/patch-ac @@ -0,0 +1,31 @@ +$NetBSD: patch-ac,v 1.1 2000/11/27 14:26:18 rh Exp $ + +--- gconf/gconf-glib.c.orig Tue Nov 7 17:37:02 2000 ++++ gconf/gconf-glib.c +@@ -9966,7 +9966,9 @@ + #endif + #include <string.h> + ++#ifdef HAVE_ICONV + #include <iconv.h> ++#endif + #include <errno.h> + + #include "glib.h" +@@ -10482,6 +10484,7 @@ + return retval; + } + ++#ifdef HAVE_ICONV + /* iconv_open() etc. are not thread safe */ + G_LOCK_DEFINE_STATIC (iconv_lock); + +@@ -10580,7 +10583,7 @@ + else + return dest; + } +- ++#endif /* HAVE_ICONV */ + + /*************************************************************/ + |