cvs commit: apache-1.3/src Configure
jim 99/01/02 15:54:35 Modified:src Configure Log: Fix Configure buglet when using SOCKS Submitted by: Life is hard, and then you die." <[EMAIL PROTECTED]> Revision ChangesPath 1.318 +2 -2 apache-1.3/src/Configure Index: Configure === RCS file: /export/home/cvs/apache-1.3/src/Configure,v retrieving revision 1.317 retrieving revision 1.318 diff -u -r1.317 -r1.318 --- Configure 1999/01/01 23:48:01 1.317 +++ Configure 1999/01/02 23:54:34 1.318 @@ -1334,7 +1334,7 @@ CFLAGS="$CFLAGS -DSOCKS -DSOCKS4" CFLAGS="$CFLAGS -Dconnect=Rconnect -Dselect=Rselect" CFLAGS="$CFLAGS -Dgethostbyname=Rgethostbyname" -if [ "x`grep EXTRA_ Makefile | grep lsocks`" = "x" ]; then +if [ "x`egrep '^EXTRA_L' Makefile.config | grep lsocks`" = "x" ]; then LIBS="$LIBS -L/usr/local/lib -lsocks" fi case $PLAT in @@ -1353,7 +1353,7 @@ CFLAGS="$CFLAGS -DSOCKS -DSOCKS5" CFLAGS="$CFLAGS -Dconnect=SOCKSconnect -Dselect=SOCKSselect" CFLAGS="$CFLAGS -Dgethostbyname=SOCKSgethostbyname -Dclose=SOCKSclose" -if [ "x`grep EXTRA_ Makefile | grep lsocks5`" = "x" ]; then +if [ "x`egrep '^EXTRA_L' Makefile.config | grep lsocks5`" = "x" ]; then LIBS="$LIBS -L/usr/local/lib -lsocks5" fi case $PLAT in
cvs commit: apache-1.3/src/os/unix os.h
rse 99/01/02 06:12:20 Modified:src CHANGES src/os/unix os.h Log: Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't search for an underscore on dlsym() (as it's already the case for FreeBSD 3.0). Submitted by: Todd Vierling <[EMAIL PROTECTED]> Reviewed by: Ralf S. Engelschall PR: 2462 Revision ChangesPath 1.1195+4 -0 apache-1.3/src/CHANGES Index: CHANGES === RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1194 retrieving revision 1.1195 diff -u -r1.1194 -r1.1195 --- CHANGES 1999/01/02 13:29:08 1.1194 +++ CHANGES 1999/01/02 14:12:18 1.1195 @@ -1,4 +1,8 @@ Changes with Apache 1.3.4 + + *) Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't + search for an underscore on dlsym() (as it's already the case + for FreeBSD 3.0). [Todd Vierling <[EMAIL PROTECTED]>] PR#2462 *) Small fix for mod_env.html: The module was documented as to be _not_ compiled into Apache per default, although it _IS_ compiled into 1.36 +3 -2 apache-1.3/src/os/unix/os.h Index: os.h === RCS file: /home/cvs/apache-1.3/src/os/unix/os.h,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- os.h 1999/01/01 19:05:30 1.35 +++ os.h 1999/01/02 14:12:20 1.36 @@ -124,8 +124,9 @@ #define RTLD_GLOBAL 0 #endif -#if (defined(__FreeBSD__) && !defined(__ELF__)) || \ -defined(__OpenBSD__) || defined(__NetBSD__) +#if (defined(__FreeBSD__) ||\ + defined(__OpenBSD__) ||\ + defined(__NetBSD__) ) && !defined(__ELF__) #define DLSYM_NEEDS_UNDERSCORE #endif
cvs commit: apache-1.3 STATUS
lars99/01/02 05:30:21 Modified:.STATUS Log: No release today... Revision ChangesPath 1.584 +10 -11apache-1.3/STATUS Index: STATUS === RCS file: /export/home/cvs/apache-1.3/STATUS,v retrieving revision 1.583 retrieving revision 1.584 diff -u -r1.583 -r1.584 --- STATUS1999/01/02 09:36:33 1.583 +++ STATUS1999/01/02 13:30:20 1.584 @@ -1,12 +1,11 @@ 1.3 STATUS: - Last modified at [$Date: 1999/01/02 09:36:33 $] + Last modified at [$Date: 1999/01/02 13:30:20 $] Release: 1.3.4-dev: current. -Lars is RM. -Possible release on January 4. (tagged/rolled on January 2.) -Win32 distribution: ??? (any volunteer?) +Possible release on ??? +Lars volunteers as RM for dates after January 21. 1.3.3: Tagged and rolled on Oct. 7. Released on 9th, announced on 10th. 1.3.2: Tagged and rolled on Sep. 21. Announced and released on 23rd. @@ -137,11 +136,6 @@ first walk though it line by line the next days before we commit it). -* Marc's [PATCH] PR#3323: recursive includes -Message-ID: <[EMAIL PROTECTED]> - Status: Marc +1, Jim +1 (concept) - * Needs more in-depth review * - * Juan Gallego's patch to add CSH-style modifiers (:h, :r, :t, :e) to mod_include's variable processing. Mesage-ID: PR#3246, also available at @@ -159,11 +153,16 @@ Message-ID: <[EMAIL PROTECTED]> Status: +In progress: + +* Marc's [PATCH] PR#3323: recursive includes +Message-ID: <[EMAIL PROTECTED]> + Status: Marc +1, Jim +1 (concept) + * Needs more in-depth review * + * Ronald Tschalär's major update of mod_digest Message-ID: <[EMAIL PROTECTED]> Status: - -In progress: * Mark Bixby's freshening up the MPE/iX port (mostly APACI) Message-ID: <[EMAIL PROTECTED]>
cvs commit: apache-1.3/src CHANGES
rse 99/01/02 05:29:10 Modified:src CHANGES Log: Ops, there is even a PR for this fixed bug Revision ChangesPath 1.1194+1 -1 apache-1.3/src/CHANGES Index: CHANGES === RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1193 retrieving revision 1.1194 diff -u -r1.1193 -r1.1194 --- CHANGES 1999/01/02 13:24:40 1.1193 +++ CHANGES 1999/01/02 13:29:08 1.1194 @@ -17,7 +17,7 @@ *) Fix installation procedure: Now that os-inline.c is actually used (a recently fixed bug prevented this) we need to also install os-include.c in addition to os.h into the PREFIX/include/ location or building of - module DSOs with APXS fails. [Ralf S. Engelschall] + module DSOs with APXS fails. [Ralf S. Engelschall] PR#3527 *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to allow us to distinguish between a garbled DSO (or even a file which isn't
cvs commit: apache-1.3/htdocs/manual/mod mod_env.html
rse 99/01/02 05:24:42 Modified:src CHANGES htdocs/manual/mod mod_env.html Log: Small fix for mod_env.html: The module was documented as to be _not_ compiled into Apache per default, although it _IS_ compiled into Apache per default. Submitted by: Sim Harbert <[EMAIL PROTECTED]> Reviewed by: Ralf S. Engelschall PR: 3572 Revision ChangesPath 1.1193+4 -0 apache-1.3/src/CHANGES Index: CHANGES === RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1192 retrieving revision 1.1193 diff -u -r1.1192 -r1.1193 --- CHANGES 1999/01/02 13:19:38 1.1192 +++ CHANGES 1999/01/02 13:24:40 1.1193 @@ -1,4 +1,8 @@ Changes with Apache 1.3.4 + + *) Small fix for mod_env.html: The module was documented as to be _not_ + compiled into Apache per default, although it _IS_ compiled into + Apache per default. [Sim Harbert <[EMAIL PROTECTED]>] PR#3572 *) Instead of fixing a bug in the generation procedure for config.status (a backslash was missing) we remove the bug together with it's complete 1.12 +1 -1 apache-1.3/htdocs/manual/mod/mod_env.html Index: mod_env.html === RCS file: /home/cvs/apache-1.3/htdocs/manual/mod/mod_env.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- mod_env.html 1998/05/20 14:12:56 1.11 +++ mod_env.html 1999/01/02 13:24:41 1.12 @@ -16,7 +16,7 @@ Apache module mod_env This module is contained in the mod_env.c file, and -is not compiled in by default. It provides for +is compiled in by default. It provides for passing environment variables to CGI/SSI scripts. Is is only available in Apache 1.1 and later.
cvs commit: apache-1.3 configure
rse 99/01/02 05:19:42 Modified:src CHANGES .configure Log: Instead of fixing a bug in the generation procedure for config.status (a backslash was missing) we remove the bug together with it's complete context because the special cases of the past can now no longer occur because of the recent magic for the --with-layout default. PR: 3590 Revision ChangesPath 1.1192+6 -0 apache-1.3/src/CHANGES Index: CHANGES === RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1191 retrieving revision 1.1192 diff -u -r1.1191 -r1.1192 --- CHANGES 1999/01/02 12:45:10 1.1191 +++ CHANGES 1999/01/02 13:19:38 1.1192 @@ -1,4 +1,10 @@ Changes with Apache 1.3.4 + + *) Instead of fixing a bug in the generation procedure for config.status (a + backslash was missing) we remove the bug together with it's complete + context because the special cases of the past can now no longer occur + because of the recent magic for the --with-layout default. + [Ralf S. Engelschall] PR#3590 *) Make top-level Makefile aware of a parallel build procedures (make -j) by making sure the src/support/ tools are _forced_ to be build last (they 1.67 +8 -12 apache-1.3/configure Index: configure === RCS file: /home/cvs/apache-1.3/configure,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- configure 1999/01/01 19:04:32 1.66 +++ configure 1999/01/02 13:19:41 1.67 @@ -867,18 +867,14 @@ -e 's:$:" \\:' >>$configstatus fi done -if [ $# -eq 0 ]; then -echo "./configure" >>$configstatus -else -echo $SEO "./configure \\" >>$configstatus -for arg -do -echo "$arg" |\ -sed -e 's:\(["$\\]\):\\\1:g' \ --e 's:^:":' \ --e 's:$:" \\:' >>$configstatus -done -fi +echo $SEO "./configure \\" >>$configstatus +for arg +do +echo "$arg" |\ +sed -e 's:\(["$\\]\):\\\1:g' \ +-e 's:^:":' \ +-e 's:$:" \\:' >>$configstatus +done echo '"$@"' >>$configstatus echo '' >>$configstatus chmod a+x $configstatus
cvs commit: apache-1.3 Makefile.tmpl
rse 99/01/02 04:45:16 Modified:src CHANGES .Makefile.tmpl Log: Make top-level Makefile aware of a parallel build procedures (make -j) by making sure the src/support/ tools are _forced_ to be build last (they depend on other libraries). Submitted by: Markus Theissinger <[EMAIL PROTECTED]> Reviewed by: Ralf S. Engelschall Revision ChangesPath 1.1191+4 -0 apache-1.3/src/CHANGES Index: CHANGES === RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1190 retrieving revision 1.1191 diff -u -r1.1190 -r1.1191 --- CHANGES 1999/01/01 22:32:15 1.1190 +++ CHANGES 1999/01/02 12:45:10 1.1191 @@ -1,5 +1,9 @@ Changes with Apache 1.3.4 + *) Make top-level Makefile aware of a parallel build procedures (make -j) by + making sure the src/support/ tools are _forced_ to be build last (they + depend on other libraries). [Markus Theissinger <[EMAIL PROTECTED]>] + *) Fix installation procedure: Now that os-inline.c is actually used (a recently fixed bug prevented this) we need to also install os-include.c in addition to os.h into the PREFIX/include/ location or building of 1.61 +2 -1 apache-1.3/Makefile.tmpl Index: Makefile.tmpl === RCS file: /home/cvs/apache-1.3/Makefile.tmpl,v retrieving revision 1.60 retrieving revision 1.61 diff -u -r1.60 -r1.61 --- Makefile.tmpl 1999/01/01 21:30:19 1.60 +++ Makefile.tmpl 1999/01/02 12:45:14 1.61 @@ -152,7 +152,8 @@ # build the package build: @echo "===> $(SRC)" - @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) build-std $(build-support) + @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) build-std + @$(MAKE) -f $(TOP)/$(MKF) $(MFLAGS) $(MFWD) $(build-support) @touch $(TOP)/$(SRC)/.apaci.build.ok @echo "<=== $(SRC)"
cvs commit: apache-1.3 STATUS
rse 99/01/02 01:36:33 Modified:.STATUS Log: Fine, mod_perl is now happy again and the init rounds works as before for the DSOs. Revision ChangesPath 1.583 +1 -10 apache-1.3/STATUS Index: STATUS === RCS file: /home/cvs/apache-1.3/STATUS,v retrieving revision 1.582 retrieving revision 1.583 diff -u -r1.582 -r1.583 --- STATUS1999/01/02 03:16:16 1.582 +++ STATUS1999/01/02 09:36:33 1.583 @@ -1,5 +1,5 @@ 1.3 STATUS: - Last modified at [$Date: 1999/01/02 03:16:16 $] + Last modified at [$Date: 1999/01/02 09:36:33 $] Release: @@ -16,15 +16,6 @@ 2.0 : In pre-alpha development, see apache-2.0 repository RELEASE SHOWSTOPPERS: - -* configure breakage - mod_perl build is broken (CFLAGS not picked up from libperl.module) -Martin committed a Configure fix which Ralf had found, please re-test! - -* Version component misbehaviour -See: <[EMAIL PROTECTED]> -Status: Server token problem is fixed. Ralf still looking at - the "double module init" stuff. * Paul's [PATCH] Win32 device files Message-ID: <[EMAIL PROTECTED]>
cvs commit: apache-1.3 STATUS
fielding99/01/01 19:16:17 Modified:.STATUS Log: Less status is good status Revision ChangesPath 1.582 +1 -6 apache-1.3/STATUS Index: STATUS === RCS file: /home/cvs/apache-1.3/STATUS,v retrieving revision 1.581 retrieving revision 1.582 diff -u -r1.581 -r1.582 --- STATUS1999/01/01 23:49:46 1.581 +++ STATUS1999/01/02 03:16:16 1.582 @@ -1,5 +1,5 @@ 1.3 STATUS: - Last modified at [$Date: 1999/01/01 23:49:46 $] + Last modified at [$Date: 1999/01/02 03:16:16 $] Release: @@ -174,10 +174,6 @@ In progress: -* Ralf's take 2 for "MODULE_MAGIC_COOKIE field for module structure" -Message-ID: <[EMAIL PROTECTED]> -Status: - * Mark Bixby's freshening up the MPE/iX port (mostly APACI) Message-ID: <[EMAIL PROTECTED]> Status: Mark says: "...currently waiting for HP to fix two OS bugs. @@ -334,7 +330,6 @@ * Roy's HTTP/1.1 Wishlist items: 1) byte range error handling -2) update the Accept-Encoding parser to allow q-values * use of spawnvp in uncompress_child in mod_mime_magic - doesn't use the new child_info structure, is this still safe? Needs to be