mod_auth_form-2.05/INSTALL
changeset 11 022ee48c7409
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_auth_form-2.05/INSTALL	Fri May 22 15:42:33 2009 +0100
@@ -0,0 +1,57 @@
+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(1)_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:
+
+Apache2: $(APACHE2_PREFIX)/include/apache2
+Apache2 Portable Runtime Library: $(APR0(1)_PREFIX)/include/apr-0(1)
+MySQL: $(MYSQL_PREFIX)/include/mysql
+
+If this is not correct, adjust APACHE2_INCLUDE, APR0(1)_INCLUDE,
+and MYSQL_INCLUDE accordingly by running the following:
+
+$ ./configure XXX1_INCLUDE=/absolute/path XXX2_INCLUDE=/abosolute/path
+
+
+In many cases, a standard build will suffice.
+-----
+
+- Standard Build
+------------------------
+$ ./configure
+$ make
+------------------------
+
+- Install
+---------
+$ sudo make install
+---------
+
+- Uninstall
+-----------
+$ sudo make uninstall
+-----------
+
+- Manual Install (if 'make install' fails)
+------------------------------------------
+$ sudo $APACHE2_DIR/bin/apxs2 -i -a -n auth_form src/mod_auth_form.la
+------------------------------------------
+
+
+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.