This is the distribution of aLog

* What is aLog

   aLog is a a C-based logging library for flexible logging to different
   destinations (media). It allows the developer to control which log
   statements are output with arbitrary granularity.It can be used in Microsoft
   Windows and Linux OSs including kernel.

   Detail description of aLog architecture and API functions can be found
   in doc/html/index.html with a web browser.

* Licensing

* What you will need to compile aLog on Unix systems

   perl 5.8+ (used by the automake tools)

   GNU make tools: automake 1.7+, autoconf 2.57+, m4 1.4+ and libtool 1.4+

   A Compiler, among those tested are:
   . gcc4 (Ubuntu 9)

* How to install:

  The aLog package uses the GNU autotools compilation and installation
  framework.

    $ ./autogen.sh
    $ ./configure --prefix=<path to install>
    $ make
    $ make install

  To enable compilation of the test programs for the library you would do this:
    $ ./configure --prefix=<path to install> --enable-test

  To enable the documentation
    $ ./configure --prefix=<path to install> --enable-doc

  To enable the tool applications (as alogd daemon etc.)
    $ ./configure --prefix=<path to install> --enable-tool

  To compile with debug symbols and information:
    $ ./configure --prefix=<path to install> --enable-debug

   This will define the _DEBUG variable at compile time.

   Type './configure --help' for a list of all the configure
   options. Some of the options are generic autoconf options, while the aLog
   specific options are prefixed with "ALOG:" in the help text.


Good luck!
