rse 98/04/06 01:30:05
Modified: . STATUS
Log:
Even more details...
Revision Changes Path
1.265 +17 -9 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache-1.3/STATUS,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -r1.264 -r1.265
--- STATUS 1998/04/06 08:21:36 1.264
+++ STATUS 1998/04/06 08:30:04 1.265
@@ -180,7 +180,8 @@
--disable-rule=HIDE
- check symbols
$ cd apache-1.3/src
- $ nm -g httpd |more
+ $ nm -g httpd | egrep -v '_module$' | egrep -v 'apx?_' | grep -v
'.o$'
+ $ nm -g httpd | more
- check operation of server
$ cd apache-1.3
$ make install
@@ -196,13 +197,19 @@
- tag the source tree
$ cd apache-1.3
$ cvs tag PRE_AP_PREFIX_RENAME_CLEANUP .
- - manually change exported module structure symbols for
- mod_abc_def.c from def_abc_module to APM_abc_def (where APM_ is
- the prefix in rename.cf) and adjust/simplify src/Configure,
- mod_so.c accordingly etc.
- ...MANUAL EDITING...
- - completely remove HIDE stuff because that's then obsolete
- ...MANUAL EDITING...
+ - manual editing the source tree for the remaining
+ changes which cannot be automated:
+ 1. change exported module structure symbols from
+ mod_abc_def.c from def_abc_module to APM_abc_def (where APM_ is
+ the prefix in rename.cf) and adjust/simplify src/Configure,
+ mod_so.c accordingly etc. These APM_ symbols were commented
+ in rename.cf for Roys step.
+ 2. change the prelinked_modules and preloaded_modules symbols
+ to APX_ variants manually and adjust src/Configure accordingly.
+ These APX_ symbols were commented in rename.cf for Roys step
+ because these cannot be done automatically.
+ 3. completely remove HIDE stuff because that's now obsolete:
+ src/Configure, include/*, APACI, etc.
- compile entire server (static variant)
$ cd apache-1.3
$ ./configure --prefix=/tmp/apache
@@ -221,7 +228,8 @@
--enable-shared=max
- check symbols
$ cd apache-1.3/src
- $ nm -g httpd |more
+ $ nm -g httpd | egrep -v 'ap(x|m)?_' | grep -v '.o$'
+ $ nm -g httpd | more
- check operation of server
$ cd apache-1.3
$ make install