Linux下使用aMsn詳解(轉)
Linux下使用aMsn詳解(轉)[@more@]原創:coolcs
amsn這一款在linux下的Msn就不多介紹了,0.95版出來後加入了攝像頭,在加上其檔案傳輸功能,你還留戀於gaim麼?
經過多天的搜尋和嘗試,終於在Fedora Core3裡用上amsn了。其實安裝amsn並run起來不難(不過我基本上從不能執行到能執行,不能輸入任何字元到能輸入英文,不能輸入中文到能輸入中文的問題都遇到了,還遇到程式段錯誤等等,也夠衰的了),尤其是中文輸入的問題是有點麻煩,因為開發amsn的語言是Tcl/tk, 對中文的支援不是太好,加之amsn-0.95需要tcl/tk 8.4以上支援,故以前jserv兄的tcl/tk 8.3 XIM patch不能用了,不過前幾天他推出了一個diff,總算讓偶找到了,活活。ok,閒話不多說了。
安裝amsn的必要條件:
1.gcc之類編譯工具必不可少,涉及相應類庫,如果你在編譯時出錯,煩請自己上網搜相應的包安裝.
2.tcl8.5a3-src.tar.gz
3.tk8.5a3-src.tar.gz 以上兩個包都可以在tcl/tk的官方網站下載得到
4.amsn-0.95.tar.gz 這裡需要說明一下,amsn.sourceforge.net上有很多amsn的版本諸如bin,rpm等,甚至有專為Fedora的rpm包,不過鄙人不推薦使用那些,在列表裡選取“other”,下載amsn-0.95.tar.gz。
5. tk-cvs-xim-fixes.diff 下載地址 (附言:感謝jserv大大對aMsn中文輸入的貢獻)
當獲取這些檔案後,我們將之放在/home目錄下
為了造成不必要的困擾,先刪除系統中自帶的tcl和tk
[root@localhost ~]#rpm -qa|grep tcl
tcl8.4*****
[root@localhost ~]#rpm -e tcl
[root@localhost ~]#rpm -qa|grep tk
tk8.4*****
[root@localhost ~]#rpm -e tk
如果解除安裝tcl發現有其他安裝包依賴於tcl,如果那些包不重要,就先刪那些包,當然你也可以rpm -e --nodeps tcl解除安裝。
[root@localhost home]# tar xvzf tcl8.5a3-src.tar.gz
[root@localhost home]# tar xvzf tk8.5a3-src.tar.gz
在安裝它們之前需要先進行diff打patch,命令很簡單:patch -p0 < tk-cvs-xim-fixes.diff
不過為大家解析一下jserv大大的這個patch檔案內容,這樣理解起來大家更容易些,中文輸入都是我說的話(針對Linux菜鳥,汗!其實偶也是菜鳥)
Index: generic/tkEvent.c
===================================================================
RCS file: /home/tk8.5a3/generic/tkEvent.c,v //遭修改的檔案 tkEvent.c
retrieving revision 1.31
diff -u -p -r1.31 tkEvent.c
--- generic/tkEvent.c 4 Nov 2005 11:52:50 -0000 1.31
+++ generic/tkEvent.c 4 Jan 2006 06:31:19 -0000
@@ -449,8 +449,10 @@ InvokeInputMethods( //大概在449行左右的位置,在InvokeInputMethods方法裡
XSetICFocus(winPtr->inputContext);
}
}
- if (XFilterEvent(eventPtr, None)) { // 刪
- return 1; //刪
+ if (eventPtr->type == KeyPress || eventPtr->type == KeyRelease) { //增加的內容
+ if (XFilterEvent(eventPtr, None)) { //增加
+ return 1; //增加
+ } //增加
}
}
return 0;
Index: unix/tkUnixEvent.c
===================================================================
RCS file: /home/tk8.5a3/unix/tkUnixEvent.c,v
retrieving revision 1.19
diff -u -p -r1.19 tkUnixEvent.c
--- unix/tkUnixEvent.c 7 Dec 2005 17:32:52 -0000 1.19
+++ unix/tkUnixEvent.c 4 Jan 2006 06:31:20 -0000
@@ -334,19 +334,22 @@ static void
TransferXEventsToTcl(
Display *display)
{
- int numFound;
XEvent event;
- numFound = QLength(display);
-
/*
- * Transfer events from the X event queue to the Tk event queue.
+ * Transfer events from the X event queue to the Tk event queue
+ * after XIM event filtering. KeyPress and KeyRelease events
+ * are filtered in Tk_HandleEvent instead of here, so that Tk's
+ * focus management code can redirect them.
*/
-
- while (numFound > 0) {
+ while (QLength(display) > 0) {
XNextEvent(display, &event);
+ if (event.type != KeyPress && event.type != KeyRelease) {
+ if (XFilterEvent(&event, None)) {
+ continue;
+ }
+ }
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
- numFound--;
}
}
下面安裝這些軟體:
[root@localhost home]# cd tcl8.5a3
[root@localhost home]# cd unix
[root@localhost home]# ./configure --prefix=/usr
--enable-gcc
--disable-threads
--disable-shared
[root@localhost home]# make clean
[root@localhost home]# make
[root@localhost home]# make install
[root@localhost home]# cd tk8.5a3
[root@localhost home]# cd unix
[root@localhost home]# ./configure --prefix=/usr
--enable-gcc
--disable-threads
--disable-shared
--enable-xft
--disable-symbols
[root@localhost home]# make clean
[root@localhost home]# make
[root@localhost home]# make install
非常關鍵的兩個link!!!
[root@localhost home]#ln -s /usr/bin/wish8.5 /usr/bin/wish
[root@localhost home]#ln -s /usr/bin/tclsh8.5 /usr/bin/tclsh
最後解壓amsn-0.95.tar.gz
[root@localhost home]# tar xvzf amsn-0.95.tar.gz
[root@localhost home]# cd amsn -0.95
[root@localhost home]# ./configure --with-tcl=/usr/lib && make clean && make
最後執行amsn ,大功告成!
[root@localhost home]# ./amsn
amsn這一款在linux下的Msn就不多介紹了,0.95版出來後加入了攝像頭,在加上其檔案傳輸功能,你還留戀於gaim麼?
經過多天的搜尋和嘗試,終於在Fedora Core3裡用上amsn了。其實安裝amsn並run起來不難(不過我基本上從不能執行到能執行,不能輸入任何字元到能輸入英文,不能輸入中文到能輸入中文的問題都遇到了,還遇到程式段錯誤等等,也夠衰的了),尤其是中文輸入的問題是有點麻煩,因為開發amsn的語言是Tcl/tk, 對中文的支援不是太好,加之amsn-0.95需要tcl/tk 8.4以上支援,故以前jserv兄的tcl/tk 8.3 XIM patch不能用了,不過前幾天他推出了一個diff,總算讓偶找到了,活活。ok,閒話不多說了。
安裝amsn的必要條件:
1.gcc之類編譯工具必不可少,涉及相應類庫,如果你在編譯時出錯,煩請自己上網搜相應的包安裝.
2.tcl8.5a3-src.tar.gz
3.tk8.5a3-src.tar.gz 以上兩個包都可以在tcl/tk的官方網站下載得到
4.amsn-0.95.tar.gz 這裡需要說明一下,amsn.sourceforge.net上有很多amsn的版本諸如bin,rpm等,甚至有專為Fedora的rpm包,不過鄙人不推薦使用那些,在列表裡選取“other”,下載amsn-0.95.tar.gz。
5. tk-cvs-xim-fixes.diff 下載地址 (附言:感謝jserv大大對aMsn中文輸入的貢獻)
當獲取這些檔案後,我們將之放在/home目錄下
為了造成不必要的困擾,先刪除系統中自帶的tcl和tk
[root@localhost ~]#rpm -qa|grep tcl
tcl8.4*****
[root@localhost ~]#rpm -e tcl
[root@localhost ~]#rpm -qa|grep tk
tk8.4*****
[root@localhost ~]#rpm -e tk
如果解除安裝tcl發現有其他安裝包依賴於tcl,如果那些包不重要,就先刪那些包,當然你也可以rpm -e --nodeps tcl解除安裝。
[root@localhost home]# tar xvzf tcl8.5a3-src.tar.gz
[root@localhost home]# tar xvzf tk8.5a3-src.tar.gz
在安裝它們之前需要先進行diff打patch,命令很簡單:patch -p0 < tk-cvs-xim-fixes.diff
不過為大家解析一下jserv大大的這個patch檔案內容,這樣理解起來大家更容易些,中文輸入都是我說的話(針對Linux菜鳥,汗!其實偶也是菜鳥)
Index: generic/tkEvent.c
===================================================================
RCS file: /home/tk8.5a3/generic/tkEvent.c,v //遭修改的檔案 tkEvent.c
retrieving revision 1.31
diff -u -p -r1.31 tkEvent.c
--- generic/tkEvent.c 4 Nov 2005 11:52:50 -0000 1.31
+++ generic/tkEvent.c 4 Jan 2006 06:31:19 -0000
@@ -449,8 +449,10 @@ InvokeInputMethods( //大概在449行左右的位置,在InvokeInputMethods方法裡
XSetICFocus(winPtr->inputContext);
}
}
- if (XFilterEvent(eventPtr, None)) { // 刪
- return 1; //刪
+ if (eventPtr->type == KeyPress || eventPtr->type == KeyRelease) { //增加的內容
+ if (XFilterEvent(eventPtr, None)) { //增加
+ return 1; //增加
+ } //增加
}
}
return 0;
Index: unix/tkUnixEvent.c
===================================================================
RCS file: /home/tk8.5a3/unix/tkUnixEvent.c,v
retrieving revision 1.19
diff -u -p -r1.19 tkUnixEvent.c
--- unix/tkUnixEvent.c 7 Dec 2005 17:32:52 -0000 1.19
+++ unix/tkUnixEvent.c 4 Jan 2006 06:31:20 -0000
@@ -334,19 +334,22 @@ static void
TransferXEventsToTcl(
Display *display)
{
- int numFound;
XEvent event;
- numFound = QLength(display);
-
/*
- * Transfer events from the X event queue to the Tk event queue.
+ * Transfer events from the X event queue to the Tk event queue
+ * after XIM event filtering. KeyPress and KeyRelease events
+ * are filtered in Tk_HandleEvent instead of here, so that Tk's
+ * focus management code can redirect them.
*/
-
- while (numFound > 0) {
+ while (QLength(display) > 0) {
XNextEvent(display, &event);
+ if (event.type != KeyPress && event.type != KeyRelease) {
+ if (XFilterEvent(&event, None)) {
+ continue;
+ }
+ }
Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL);
- numFound--;
}
}
下面安裝這些軟體:
[root@localhost home]# cd tcl8.5a3
[root@localhost home]# cd unix
[root@localhost home]# ./configure --prefix=/usr
--enable-gcc
--disable-threads
--disable-shared
[root@localhost home]# make clean
[root@localhost home]# make
[root@localhost home]# make install
[root@localhost home]# cd tk8.5a3
[root@localhost home]# cd unix
[root@localhost home]# ./configure --prefix=/usr
--enable-gcc
--disable-threads
--disable-shared
--enable-xft
--disable-symbols
[root@localhost home]# make clean
[root@localhost home]# make
[root@localhost home]# make install
非常關鍵的兩個link!!!
[root@localhost home]#ln -s /usr/bin/wish8.5 /usr/bin/wish
[root@localhost home]#ln -s /usr/bin/tclsh8.5 /usr/bin/tclsh
最後解壓amsn-0.95.tar.gz
[root@localhost home]# tar xvzf amsn-0.95.tar.gz
[root@localhost home]# cd amsn -0.95
[root@localhost home]# ./configure --with-tcl=/usr/lib && make clean && make
最後執行amsn ,大功告成!
[root@localhost home]# ./amsn
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-949415/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【轉載】Linux下徹底解除安裝mysql詳解LinuxMySql
- Linux下 ln 命令詳解Linux
- 【轉】linux-命令top詳解Linux
- Linux下使用timedatectl命令時間時區操作詳解Linux
- linux核心IDR機制詳解【轉】Linux
- 【Linux】命令expect使用詳解Linux
- Linux下的字串擷取詳解Linux字串
- MFC下CSocket程式設計詳解(轉)程式設計
- Linux中tail命令的使用詳解!LinuxAI
- linux系統awk命令使用詳解Linux
- Linux下的tar壓縮解壓縮命令詳解Linux
- Linux下使用Kibana教程(詳細圖文演示)Linux
- Linux 三劍客之 grep 使用詳解Linux
- linux tail命令的使用方法詳解LinuxAI
- Linux下安裝hive 詳解及HiveSQL執行LinuxHiveSQL
- Linux下安裝Hadoop 詳解及WordCount執行LinuxHadoop
- Hanlp漢字轉拼音使用python呼叫詳解HanLPPython
- Linux下安裝與使用MySQL詳細介紹LinuxMySql
- Linux at命令詳解Linux
- linux LVM詳解LinuxLVM
- Linux top詳解Linux
- 詳解Linux InodeLinux
- linux管道詳解Linux
- linux——管道詳解Linux
- Linux系統下各個目錄的作用詳解!Linux
- Linux下解壓命令、壓縮命令大全,詳細教程Linux
- Linux使用者身份(命令詳解與補正)Linux
- [轉]GitFlow詳解教程Git
- vi命令詳解(轉)
- SVN命令詳解【轉】
- Linux sort 命令詳解Linux
- Linux xattr 命令詳解Linux
- Linux locate 命令詳解Linux
- Linux firewalld 命令詳解Linux
- Linux iptables 命令詳解Linux
- Linux netstat 命令詳解Linux
- Linux history 命令詳解Linux
- Linux sed 命令詳解Linux
- Linux awk 命令詳解Linux