Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 12950 invoked by uid 6000); 6 Apr 1998 08:30:07 -0000 Received: (qmail 12944 invoked by alias); 6 Apr 1998 08:30:06 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 12942 invoked by uid 168); 6 Apr 1998 08:30:05 -0000 Date: 6 Apr 1998 08:30:05 -0000 Message-ID: <19980406083005.12941.qmail@hyperreal.org> From: rse@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3 STATUS Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org 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