Post date: 2010/03/02 2:26:53
ALBはCentOS4でインストールしているため必要になった
1./lib/libcrypto.so.4がなくlibcrypto.so.6なので、
/home/anagix/anagix_tools/lib で、
ln -s /lib/libcrypto.so.6 libcrypto.so.4
export LD_LIBRARY_PATH=/home/anagix/anagix_tools/lib
2. libxml2がない場合インストール
wget ftp://xmlsoft.org/libxml2/libxml2-sources-2.7.6.tar.gz
tar xzf libxml2-sources-2.7.6.tar.gz
cd libxml2-2.7.6
./configure --prefix=/home/anagix/anagix_tools; make ; make install
3.さらにlibxsltがない場合インストール
wget ftp://xmlsoft.org/libxslt/libxslt-1.1.26.tar.gz
tar xzf libxslt-1.1.26.tar.gz
cd libxslt-1.1.26
./configure --with-libxml-prefix=/home/anagix/anagix_tools --prefix=/home/anagix/anagix_tools
make&make install