1. gzyueqian
      13352868059
      首頁 > 新聞中心 > > 正文

      Linux系統環境下如何使用aMsn即時通訊

      更新時間: 2006-04-11 13:40:33來源: 粵嵌教育瀏覽量:2077

      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 下載地址http://jserv.sayya.org/tcl-i18n/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 ,大功告成!

      免費預約試聽課

      亚洲另类欧美综合久久图片区_亚洲中文字幕日产无码2020_欧美日本一区二区三区桃色视频_亚洲AⅤ天堂一区二区三区

      
      

      1. 在线观看亚洲中文AV | 台湾久久三级日本三级少妇 | 日本一道本高清一区二区 | 日本大胆欧美中文字幕 | 一本久久a久久精品亚洲 | 亚洲精品青青操久久 |