diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-08-08 19:24:50 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-08 19:24:50 +0000 |
commit | dd3dcfb11907fdae6776ac2c3cb5fd7253b9ae87 (patch) | |
tree | f0fefc1caf465b8e63db9866fc880f49bc00ff35 /packages/x11/files/fix-utf8-wrong-define.patch | |
parent | 4d1091bec57d6991545152b2de9bf546cf92d598 (diff) |
fix wrong #define in diet-x11 Xlib.h:
don't say you X_HAVE_UTF8_STRING if you don't...
Diffstat (limited to 'packages/x11/files/fix-utf8-wrong-define.patch')
-rw-r--r-- | packages/x11/files/fix-utf8-wrong-define.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/x11/files/fix-utf8-wrong-define.patch b/packages/x11/files/fix-utf8-wrong-define.patch new file mode 100644 index 0000000000..dca88fba92 --- /dev/null +++ b/packages/x11/files/fix-utf8-wrong-define.patch @@ -0,0 +1,16 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- libX11-6.2.1/include/X11/Xlib.h~fix-utf8-wrong-define ++++ libX11-6.2.1/include/X11/Xlib.h +@@ -100,7 +100,7 @@ + + /* API mentioning "UTF8" or "utf8" is an XFree86 extension, introduced in + November 2000. Its presence is indicated through the following macro. */ +-#define X_HAVE_UTF8_STRING 1 ++#undef X_HAVE_UTF8_STRING + + typedef char *XPointer; + |