Current version of Anhy is 1.6-8, currently working on SMP architectures.
Anahy is licensed under GPL and can be compiled in any architecture.
The development version is available to download from Anahy's CVS. To download try:
cvs -d :pserver:anonymous@anahy.cvs.sourceforge.net/cvsroot/anahy \ checkout Anahy
Anahy may be compiled by normal users or by the super-user (root). To compile Anahy as root, do the following:
./autogen.sh ./configure make make install
where X-Y is the Anahy version to be compiled. That way the library will be created at /usr/lib/ and the headers will be let at /usr/includes/.
To compile Anahy as a normal user, a new directory must be created for the installation.
./autogen.sh ./configure --prefix=/path/to/directory/ make make install
To compile an application using Anahy, the environment variable $LD_LIBRARY_PATH must be set with the path where the Anahy library is, in case Anahy has been installed by a normal user, and not by root.
Enter the directoty where Anahy was compiled in and update the varible:
cd /path/to/directory/lib export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
It is possible to add the following line to your .bashrc file so that the library can be found during the execution of any shell:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/directory/lib