# # $Id: INSTALL.src 551 2006-08-07 13:16:28Z coelho $ # Installing the mod_macro 1.1.10 module with apache 2.2.0 is simple, especially if you use mod_so for dynamic linking. Here is a sample installation with apache 2.2.0 and mod_macro 1.1.10: (0) get the latest mod_macro release: prompt> wget http://www.coelho.net/mod_macro/mod_macro-latest.tar.gz (1) uncompress the distribution tar file if necessary. prompt> gunzip mod_macro-latest.tar.gz (2) untar the distribution tar file along the apache source tree. prompt> tar xf mod_macro-latest.tar (1,2)bis with gnu tar, the two previous operations can be achieved in a single step. prompt> tar xzf mod_macro-latest.tar.gz (3) compile and install mod macro as a dynamic shared object library ready to be loaded into apache. prompt> apxs -c -i -a mod_macro-1.1.10/mod_macro.c (4) you may also want to install the html documentation. prompt> cp mod_macro-1.1.10/mod_macro.html \ apache_2.2.0/htdocs/manual/mod/ and maybe update apache_2.2.0/htdocs/manual/mod/index.html to add a reference to the mod_macro.html file. (5) if you want a static binding, see the apache documentation;-) (6) Enjoy!