summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-06-14 17:07:58 +0000
committerMamoru Komachi <usata@gentoo.org>2004-06-14 17:07:58 +0000
commit2f21100e75b661ae0741ae28fb11b48997972c7e (patch)
treedb62dec4ee7fc162585801406a971c36ecdcd3e5 /dev-libs/m17n-lib/files
parentFix header. (diff)
downloadhistorical-2f21100e75b661ae0741ae28fb11b48997972c7e.tar.gz
historical-2f21100e75b661ae0741ae28fb11b48997972c7e.tar.bz2
historical-2f21100e75b661ae0741ae28fb11b48997972c7e.zip
Added a patch necessary for scim-m17n. Marked 1.0.2 stable on x86.
Diffstat (limited to 'dev-libs/m17n-lib/files')
-rw-r--r--dev-libs/m17n-lib/files/digest-m17n-lib-1.0.2-r11
-rw-r--r--dev-libs/m17n-lib/files/m17n-lib-1.0.2-typedef.diff33
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/m17n-lib/files/digest-m17n-lib-1.0.2-r1 b/dev-libs/m17n-lib/files/digest-m17n-lib-1.0.2-r1
new file mode 100644
index 000000000000..c43ff7bfb2d9
--- /dev/null
+++ b/dev-libs/m17n-lib/files/digest-m17n-lib-1.0.2-r1
@@ -0,0 +1 @@
+MD5 6e2d5088d666fca4ed06357000385932 m17n-lib-1.0.2.tar.gz 478985
diff --git a/dev-libs/m17n-lib/files/m17n-lib-1.0.2-typedef.diff b/dev-libs/m17n-lib/files/m17n-lib-1.0.2-typedef.diff
new file mode 100644
index 000000000000..ee2576ed9b7c
--- /dev/null
+++ b/dev-libs/m17n-lib/files/m17n-lib-1.0.2-typedef.diff
@@ -0,0 +1,33 @@
+diff -ur m17n-lib-1.0.2/src/m17n-core.h m17n-lib-1.0.2.new/src/m17n-core.h
+--- m17n-lib-1.0.2/src/m17n-core.h 2004-03-29 11:58:53.000000000 +0800
++++ m17n-lib-1.0.2.new/src/m17n-core.h 2004-06-14 12:38:07.809982344 +0800
+@@ -103,7 +103,7 @@
+
+ #MSymbol はシンボルオブジェクトの型へのポインタである。 */
+
+-typedef struct MSymbol *MSymbol;
++typedef struct MSymbol_ *MSymbol;
+
+ /*=*/
+
+diff -ur m17n-lib-1.0.2/src/symbol.h m17n-lib-1.0.2.new/src/symbol.h
+--- m17n-lib-1.0.2/src/symbol.h 2004-03-09 13:26:14.000000000 +0800
++++ m17n-lib-1.0.2.new/src/symbol.h 2004-06-14 12:37:58.491398984 +0800
+@@ -25,7 +25,7 @@
+
+ #include "plist.h"
+
+-struct MSymbol
++struct MSymbol_
+ {
+ /** 1 iff a value of property (including text-property) whose key is
+ the symbol is a managed object. */
+@@ -40,7 +40,7 @@
+ /* Plist of the symbol. */
+ MPlist plist;
+
+- MSymbol next;
++ struct MSymbol_ * next;
+ };
+
+ #define MSYMBOL_NAME(sym) ((sym)->name)