- 代碼: 選擇全部
http://gyachi.sourceforge.net
Indeed, it is based upon the project, Gyach Enhanced Yahoo!. However, there has been no updated version released since a year ago (according to the project introduction.) So the project creaters decided to " ... continue development of that client ...".
I struggled for a few hours to build from source in order to test some functions, though nothing sepcial has been achieved up to the present. Yet I would like to share some experiences as setting up this program to help others eliminate trivial tasks.
Environment of mine is
- 代碼: 選擇全部
Debian 3.1 r2 Sarge Stable.
Kernel 2.6.16 (manually built)
gcc version 3.3.5 (Debian 1:3.3.5-13)
GNU Make 3.80
Python 2.3
The dilemmas I encountered are listed as below (most of them are merely matters of missing package. That's why there is nothing special ; ):
Error during './configure' ...
- 代碼: 選擇全部
ERROR: X development libraries not found
ANSWER: apt-get install libx11-dev
- 代碼: 選擇全部
ERROR: no 'alsa' package found ... need PKG_CONFIG_PATH set.
ANSWER: apt-get install libasound2
- 代碼: 選擇全部
ERROR: no libgtkhtml2.0
ANSWER: apt-get install libgtkhtml2-dev
- 代碼: 選擇全部
ERROR: error: cannot find ltdl library
ANSWER: apt-get install libltdl3-dev
- 代碼: 選擇全部
ERROR: error: cannot find jasper and/or jpeg library
ANSWER: apt-get install libjasper-1.701-1
apt-get install libjasper-1.701-dev
apt-get install libjasper-1.701-runtime
apt-get install libjpeg62-dev
Error during 'make' ...
- 代碼: 選擇全部
ERROR: gyachi-mcrypt.c: In function `encrypt_message':
gyachi-mcrypt.c:271: error: `MCRYPT' undeclared (first use in this function)
gyachi-mcrypt.c:271: error: syntax error before "td"
gyachi-mcrypt.c:322: error: `td' undeclared (first use in this function)
gyachi-mcrypt.c:325: warning: implicit declaration of function `mcrypt_enc_get_key_size'
gyachi-mcrypt.c:327: error: `MCRYPT_FAILED' undeclared (first use in this function)
gyachi-mcrypt.c:380: warning: implicit declaration of function `mcrypt_generic'
ANSWER:apt-get install libmcrypt-dev
- 代碼: 選擇全部
ERROR: gpgme.h: No such file or directory
ANSWER: apt-get install libgpgme-dev
apt-get install libgpgme11-dev
- 代碼: 選擇全部
ERROR: xmms/xmmsctrl.h: No such file or directory
ANSWER: apt-get install xmms-dev
have fun; )