1 Install Vim6.4 on AIX 5.2 2 3 1. Decompress vim64.tar.bz2 4 $bzip2 -d vim64.tar.bz2 5 $tar xvf vim64.tar 6 7 2. Config makefile. 8 $cd vim64 9 $./configure --enable-gui=athena --enable-multibyte --prefix=/oracs/account 10 Default is 'disable-multibyte' 11 12 3. Make it. 13 $ make;make install 14 15 16 I trid several gui options, default is 'motif' but have got some errors during making. 17 related to X11 header files which are missing because lack of X11.adt.ext on os base media. 18 such as X11/extentions/Print.h. 19 20 so I turned to gtk and gtk2 but still fail. Make is ok but when 21 running vim in gui mode, I got a error 22 which complains not supporting gui mode. 23 24 My last resort is 'athena', this time I make it. It works very well. I can run 25 gvim on CDE now. ^_^ 26 27 3. Check whether the executive is gui enable or not. 28 $vim -g 29 30 vim:ft=sh 31