Notes
-----
Additional help can be found by running './configure --help'.

It is assumed that the base directory containing the
Apache2, Apache2 Portable Runtime Library, and MySQL
installations are all located under '/usr'. If this is
not correct, adjust APACHE2_PREFIX, APR0_PREFIX, and
MYSQL_PREFIX accordingly by running the following:

$ ./configure XXX1_PREFIX=/prefix/path XXX2_PREFIX=/prefix/path
-----
It is assumed that the header files map to the following locations:are located at

Apache2: $(APACHE2_PREFIX)/include/apache2
Apache2 Portable Runtime Library: $(APR0_PREFIX)/include/apr-0
MySQL: $(MYSQL_PREFIX)/include/mysql

If this is not correct, adjust APACHE2_INCLUDE, APR0_INCLUDE,
and MYSQL_INCLUDE accordingly by running the following:

$ ./configure XXX1_INCLUDE=/absolute/path XXX2_INCLUDE=/abosolute/path
-----
The module can use thread-safe libraries (default is no thread-saftey) by
running:

$ ./configure --enable-thread-safe
-----


- Standard Compile/Build
------------------------
$ ./configure
$ make
------------------------

- Install
---------
# make install
#
# Add 'LoadModule auth_form_module /path/to/modules/mod_auth_form.so' to
# httpd.conf
#
# $APACHE2_DIR/bin/apache2ctl restart
---------

- Uninstall
-----------
# make uninstall
#
# $APACHE2_DIR/bin/apache2ctl restart
-----------

- Manual Install (if 'make install' fails)
------------------------------------------
# $APACHE2_DIR/bin/apxs2 -i -a -n auth_form src/mod_auth_form.la
# $APACHE2_DIR/bin/apache2ctl restart
------------------------------------------


OS Specific Notes
-----------------
The 'win32' subdirectory contains Visual Studio 6 project files needed
to compile the module on the win32 platform. After building, copy
'win32/Release/mod_auth_form.so' and 'win32/Release/mod_auth_form.pdb'
to the modules directory of the Apache2 distribution.

Solaris users may need to pass --disable-shared to ./configure.
