Here are a set of instructions to get the library compiled for your platform:
Then use the standard procedure to get compiled an autotool ready package. Here are the steps:
bash: ~$ tar xzvf axl-0.2.1.b1984.g1985.tar.gz bash: ~$ cd axl-0.2.1.b1984.g1985/ bash: ~/axl-0.2.1.b1984.g1985 $ ./configure bash: ~/axl-0.2.1.b1984.g1985 $ make bash: ~/axl-0.2.1.b1984.g1985 $ make install
Axl library comes with pkg-config support, which makes easy to use it inside your pkg-config enable projects.
To check current support for your Axl Library you can execute:
bash: ~$ pkg-config --libs --cflags axl
In the case you want give support for XML Namespaces, you must use:
bash: ~$ pkg-config --libs --cflags axl-ns
To include support into your autotool checks (configure.ac/in files) you can place the following piece:
PKG_CHECK_MODULES(LIBRARIES, axl)
Again, add axl-ns to the previous instruction if you want your package to also check for Axl Library Namespace support.
#include <axl.h>
In the case Namespace is required, you must use:
#include <axl_ns.h>