this patch updates the outdated intructions of building mod_example and making your own on its base.
Index: modules/experimental/README =================================================================== RCS file: /home/cvspublic/httpd-2.0/modules/experimental/README,v retrieving revision 1.2 diff -u -r1.2 README --- README 11 May 2000 20:25:45 -0000 1.2 +++ README 12 Apr 2002 10:15:38 -0000 @@ -15,15 +15,15 @@ browse to that location, you will see a display of some of the tracing the example module did as the various callbacks were made. -To include the example module in your server run `./configure ---enable-example` in the src directory before running `make`. +To include the example module in your server add --enable-example to the +other ./configure arguments executed from the httpd-2.0 directory. After +that run 'make'. To add another module of your own: - A. mkdir src/modules/mymodule - B. cp src/modules/example/* src/modules/mymodule - C. Modify the files in the new directory - D. Build the server as above, with appropriate changes. + A. cp modules/experimental/mod_example.c modules/experimental/mod_myexample.c + B. Modify the file + C. Build the server with --enable--myexample To activate the example module, include a block similar to the following in your httpd.conf file: __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
