diff options
author | perky <perky@FreeBSD.org> | 2003-09-19 04:45:21 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-09-19 04:45:21 +0000 |
commit | dfa0105e13c23954326971f7b7a7432728ec7a9b (patch) | |
tree | bcc25f9830de7e8e47045bd624d827a9870f26e5 /korean | |
parent | 6fb75176a7d192af6543cf687ebccedf551d9829 (diff) | |
download | FreeBSD-ports-dfa0105e13c23954326971f7b7a7432728ec7a9b.zip FreeBSD-ports-dfa0105e13c23954326971f7b7a7432728ec7a9b.tar.gz |
Add a workaround to avoid a fatal confliction with qt32.
Reviewed by: Choe Hwanjin <krisna@kldp.org> (author)
Approved by: portmgr (will)
Diffstat (limited to 'korean')
-rw-r--r-- | korean/nabi/Makefile | 1 | ||||
-rw-r--r-- | korean/nabi/files/patch-src_ic.c | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/korean/nabi/Makefile b/korean/nabi/Makefile index 642ea5f..0d24328 100644 --- a/korean/nabi/Makefile +++ b/korean/nabi/Makefile @@ -7,6 +7,7 @@ PORTNAME= nabi PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= korean gnome x11 MASTER_SITES= http://download.kldp.net/nabi/ diff --git a/korean/nabi/files/patch-src_ic.c b/korean/nabi/files/patch-src_ic.c new file mode 100644 index 0000000..59a186b --- /dev/null +++ b/korean/nabi/files/patch-src_ic.c @@ -0,0 +1,20 @@ +--- src/ic.c.orig Sat Aug 23 14:15:05 2003 ++++ src/ic.c Fri Sep 19 10:47:55 2003 +@@ -1219,7 +1219,7 @@ + * befor commiting the string. but it makes too many flickering + * so I first send commit string and then delete preedit string. + * This makes some problem on gtk2 entry */ +- /* nabi_ic_preedit_clear(ic); */ ++ nabi_ic_preedit_clear(ic); + + list[0] = buf; + ret = XwcTextListToTextProperty(server->display, list, 1, +@@ -1237,7 +1237,7 @@ + XFree(tp.value); + + /* we delete preedit string here */ +- nabi_ic_preedit_clear(ic); ++ /* nabi_ic_preedit_clear(ic); */ + + return True; + } |