[VOTE] Apache HTTP Server 1.3.36 Candidate

2006-05-14 Thread Jim Jagielski

Please test and vote on releasing Apache httpd 1.3.36

Download from:
http://httpd.apache.org/dev/dist/

Changes:
http://httpd.apache.org/dev/dist/CHANGES_1.3

MD5s:
MD5 (apache_1.3.36.tar.Z) = 2c310916fb97a9d4d700d8b8fad29423
MD5 (apache_1.3.36.tar.gz) = d6c0709fc1f20d6d93d30435fcfc4843

(NOTE: http://people.apache.org/~jim/apache_1.3.36/ is
also a valid URL to use until httpd.apache.org syncs
with people.apache.org)

--
 
===
   Jim Jagielski   [|]   [EMAIL PROTECTED]   [|]   http:// 
www.jaguNET.com/

If you can dodge a wrench, you can dodge a ball.





Re: [VOTE] Apache HTTP Server 1.3.36 Candidate

2006-05-14 Thread Rasmus Lerdorf

Jim Jagielski wrote:

Please test and vote on releasing Apache httpd 1.3.36

Download from:
http://httpd.apache.org/dev/dist/

Changes:
http://httpd.apache.org/dev/dist/CHANGES_1.3


Works ok on Debian-unstable with the standard set of Debian patches 
applied.  It might be time to roll in this ndbm patch to fix 
mod_auth_dbm and mod_rewrite on Debian and Redhat.


diff -Naurd build-tree.ORIG/apache_1.3.34/src/helpers/find-dbm-lib 
build-tree/apache_1.3.34/src/helpers/find-dbm-lib
--- build-tree.ORIG/apache_1.3.34/src/helpers/find-dbm-lib 
2002-01-22 08:39:15.0 +0100
+++ build-tree/apache_1.3.34/src/helpers/find-dbm-lib   2003-06-29 
09:46:15.0 +0200

@@ -13,16 +13,19 @@
*-linux*)
# many systems don't have -ldbm
DBM_LIB=
-   if ./helpers/TestCompile lib ndbm dbm_open; then
+   if ./helpers/TestCompile lib db __db_ndbm_open; then
+   DBM_LIB=-ldb
+   CFLAGS=$CFLAGS -DDB_DBM_HSEARCH=1
+   elif ./helpers/TestCompile lib db1 dbm_open; then
+   # For Red Hat 7, if not handled by the ndbm case above
+   DBM_LIB=-ldb1
+   CFLAGS=$CFLAGS -I/usr/include/db1
+   elif ./helpers/TestCompile lib ndbm dbm_open; then
DBM_LIB=-lndbm
if ./helpers/TestCompile lib db1 dbm_open; then
# Red Hat needs this; ndbm.h lives in db1
CFLAGS=$CFLAGS -I/usr/include/db1
fi
-   elif ./helpers/TestCompile lib db1 dbm_open; then
-   # For Red Hat 7, if not handled by the ndbm case above
-   DBM_LIB=-ldb1
-   CFLAGS=$CFLAGS -I/usr/include/db1
 elif ./helpers/TestCompile lib gdbm dbm_open; then
 DBM_LIB=-lgdbm
 CFLAGS=$CFLAGS -I/usr/include/gdbm
diff -Naurd 
build-tree.ORIG/apache_1.3.34/src/modules/standard/mod_auth_dbm.c 
build-tree/apache_1.3.34/src/modules/standard/mod_auth_dbm.c
--- build-tree.ORIG/apache_1.3.34/src/modules/standard/mod_auth_dbm.c 
2002-03-13 22:05:33.0 +0100
+++ build-tree/apache_1.3.34/src/modules/standard/mod_auth_dbm.c 
2003-06-29 09:46:15.0 +0200

@@ -81,8 +81,15 @@
 #define dbm_fetch sdbm_fetch
 #define dbm_close sdbm_close
 #else
+#ifndef DB_DBM_HSEARCH
+#define DB_DBM_HSEARCH 0
+#endif
+#if DB_DBM_HSEARCH != 0
+#include db.h
+#else
 #include ndbm.h
 #endif
+#endif

 /*
  * Module definition information - the part between the -START and -END
diff -Naurd 
build-tree.ORIG/apache_1.3.34/src/modules/standard/mod_rewrite.h 
build-tree/apache_1.3.34/src/modules/standard/mod_rewrite.h
--- build-tree.ORIG/apache_1.3.34/src/modules/standard/mod_rewrite.h 
2002-03-13 22:05:34.0 +0100
+++ build-tree/apache_1.3.34/src/modules/standard/mod_rewrite.h 
2003-06-29 09:46:15.0 +0200

@@ -130,7 +130,14 @@
  * so we also need to know the file extension
  */
 #ifndef NO_DBM_REWRITEMAP
+#ifndef DB_DBM_HSEARCH
+#define DB_DBM_HSEARCH 0
+#endif
+#if DB_DBM_HSEARCH != 0
+#include db.h
+#else
 #include ndbm.h
+#endif
 #if defined(DBM_SUFFIX)
 #define NDBM_FILE_SUFFIX DBM_SUFFIX
 #elif defined(__FreeBSD__) || (defined(DB_LOCK)  defined(DB_SHMEM))
diff -Naurd 
build-tree.ORIG/apache-contrib-1.0.8a/mod_eaccess/mod_eaccess.c 
build-tree/apache-contrib-1.0.8a/mod_eaccess/mod_eaccess.c
--- build-tree.ORIG/apache-contrib-1.0.8a/mod_eaccess/mod_eaccess.c 
2001-03-05 13:30:48.0 +0100
+++ build-tree/apache-contrib-1.0.8a/mod_eaccess/mod_eaccess.c 
2003-06-29 09:49:04.0 +0200

@@ -263,11 +263,11 @@
 #include util_md5.h
 #include http_conf_globals.h
 #include utime.h
-#if defined (__GLIBC__) 
  \

-defined (__GLIBC_MINOR__)\
-__GLIBC__ = 2   \
-__GLIBC_MINOR__ = 1
-#include db1/ndbm.h
+#ifndef DB_DBM_HSEARCH
+#define DB_DBM_HSEARCH 0
+#endif
+#if DB_DBM_HSEARCH != 0
+#include db.h
 #else
 #include ndbm.h
 #endif

Would also be nice to get the Debian config.layout section in:

#   Debian GNU policy conforming path layout.
Layout Debian
prefix:/usr
exec_prefix:   $prefix
bindir:$prefix/bin
sbindir:   $prefix/lib+
libexecdir:$prefix/libexec
mandir:$prefix/share/man
sysconfdir:/etc+
datadir:   $prefix/lib
iconsdir:  $prefix/share/apache/icons
htdocsdir: $datadir/htdocs
cgidir:$datadir/cgi-bin
includedir:$prefix/include+
localstatedir: /var
runtimedir:$localstatedir/run
logfiledir:$localstatedir/log+
proxycachedir: $localstatedir/cache+
/Layout


Re: [VOTE] Apache HTTP Server 1.3.36 Candidate

2006-05-14 Thread The Doctor
On Sun, May 14, 2006 at 09:34:38AM -0400, Jim Jagielski wrote:
 Please test and vote on releasing Apache httpd 1.3.36
 
 Download from:
 http://httpd.apache.org/dev/dist/
 
 Changes:
 http://httpd.apache.org/dev/dist/CHANGES_1.3
 
 MD5s:
 MD5 (apache_1.3.36.tar.Z) = 2c310916fb97a9d4d700d8b8fad29423
 MD5 (apache_1.3.36.tar.gz) = d6c0709fc1f20d6d93d30435fcfc4843
 
 (NOTE: http://people.apache.org/~jim/apache_1.3.36/ is
 also a valid URL to use until httpd.apache.org syncs
 with people.apache.org)
 

BSD/OS 4.3.1 reports all clear with Apache_SSL.

 --
  
 ===
Jim Jagielski   [|]   [EMAIL PROTECTED]   [|]   http:// 
 www.jaguNET.com/
 If you can dodge a wrench, you can dodge a ball.
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -- 
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.
 

-- 
Member - Liberal International  
This is [EMAIL PROTECTED]   Ici [EMAIL PROTECTED]
God Queen and country! Beware Anti-Christ rising!
Arsenal Ahead to win the UEFA CL 2005/2006

-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



Re: [VOTE] Apache HTTP Server 1.3.36 Candidate

2006-05-14 Thread Sander Temme


On May 14, 2006, at 6:34 AM, Jim Jagielski wrote:


Please test and vote on releasing Apache httpd 1.3.36


+1.

[EMAIL PROTECTED] 1336 $ gpg --verify apache_1.3.36.tar.Z.asc
gpg: Signature made Sun May 14 06:17:22 2006 PDT using DSA key ID  
08C975E5

gpg: Good signature from Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to  
the owner.
Primary key fingerprint: 8B39 757B 1D8A 994D F243  3ED5 8B3A 601F  
08C9 75E5


[EMAIL PROTECTED] 1336 $ gpg --verify apache_1.3.36.tar.gz.asc
gpg: Signature made Sun May 14 06:17:11 2006 PDT using DSA key ID  
08C975E5

gpg: Good signature from Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: aka Jim Jagielski [EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to  
the owner.
Primary key fingerprint: 8B39 757B 1D8A 994D F243  3ED5 8B3A 601F  
08C9 75E5


Next time we meet, remind me to sign your key. I thought I had, a  
long time ago.


[EMAIL PROTECTED] 1336 $ md5 apache_1.3.36.tar.gz  cat  
apache_1.3.36.tar.gz.md5

MD5 (apache_1.3.36.tar.gz) = d6c0709fc1f20d6d93d30435fcfc4843
MD5 (apache_1.3.36.tar.gz) = d6c0709fc1f20d6d93d30435fcfc4843
[EMAIL PROTECTED] 1336 $ md5 apache_1.3.36.tar.Z  cat  
apache_1.3.36.tar.Z.md5

MD5 (apache_1.3.36.tar.Z) = 2c310916fb97a9d4d700d8b8fad29423
MD5 (apache_1.3.36.tar.Z) = 2c310916fb97a9d4d700d8b8fad29423

Darwin Graymalkin.local 8.6.0 Darwin Kernel Version 8.6.0: Tue Mar  7  
16:58:48 PST 2006; root:xnu-792.6.70.obj~1/RELEASE_PPC Power  
Macintosh powerpc


1.3.36:

Failed Test  Stat Wstat Total Fail  Failed  List of Failed
 
---

t/apache/contentlength.t   206  30.00%  6 10 14 16 18 20
t/apache/headers.t 243  12.50%  3 6 9
t/modules/include.t791   1.27%  43
t/modules/proxy.t  132  15.38%  10-11
(1 subtest UNEXPECTEDLY SUCCEEDED), 28 tests and 19 subtests skipped.
Failed 4/64 test scripts, 93.75% okay. 12/1822 subtests failed,  
99.34% okay.


1.3.35:

Failed Test  Stat Wstat Total Fail  Failed  List of Failed
 
---

t/apache/contentlength.t   206  30.00%  6 10 14 16 18 20
t/apache/headers.t 243  12.50%  3 6 9
t/modules/include.t791   1.27%  43
t/modules/proxy.t  132  15.38%  10-11
(1 subtest UNEXPECTEDLY SUCCEEDED), 28 tests and 19 subtests skipped.
Failed 4/64 test scripts, 93.75% okay. 12/1822 subtests failed,  
99.34% okay.


No regressions.

Linux sarlacc 2.6.12-10-686 #1 Fri Apr 28 13:21:56 UTC 2006 i686 GNU/ 
Linux


Failed Test  Stat Wstat Total Fail  Failed  List of Failed
 
---

t/apache/contentlength.t   206  30.00%  6 10 14 16 18 20
t/apache/headers.t 243  12.50%  3 6 9
t/modules/include.t791   1.27%  43
t/modules/proxy.t  132  15.38%  10-11
(1 subtest UNEXPECTEDLY SUCCEEDED), 28 tests and 19 subtests skipped.
Failed 4/64 test scripts, 93.75% okay. 12/1826 subtests failed,  
99.34% okay.


FreeBSD bagheera.sandla.org. 6.1-STABLE FreeBSD 6.1-STABLE #4: Tue  
May  9 21:19:12 PDT 2006 [EMAIL PROTECTED]:/usr/obj/usr/ 
src/sys/GENERIC  i386


1.3.36

Failed Test  Stat Wstat Total Fail  Failed  List of Failed
 
---

t/apache/contentlength.t   206  30.00%  6 10 14 16 18 20
t/apache/headers.t 243  12.50%  3 6 9
t/apache/limits.t  101  10.00%  8
t/modules/include.t791   1.27%  43
t/modules/proxy.t  132  15.38%  10-11
(1 subtest UNEXPECTEDLY SUCCEEDED), 28 tests and 19 subtests skipped.
Failed 5/64 test scripts, 92.19% okay. 13/1832 subtests failed,  
99.29% okay.


1.3.35:

Failed Test  Stat Wstat Total Fail  Failed  List of Failed
 
---

t/apache/contentlength.t   206  30.00%  6 10 14 16 18 20
t/apache/headers.t 243  12.50%  3 6 9
t/apache/limits.t  101  

Bug report for Apache httpd-1.3 [2006/05/14]

2006-05-14 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 8329|New|Nor|2002-04-20|mime_magic gives 500 and no error_log on Microsoft|
| 8372|Ass|Nor|2002-04-22|Threadsaftey issue in Rewrite's cache [Win32/OS2/N|
| 8849|New|Nor|2002-05-07|make install errors as root on NFS shares |
| 8882|New|Enh|2002-05-07|[PATCH] mod_rewrite communicates with external rew|
| 9037|New|Min|2002-05-13|Slow performance when acessing an unresolved IP ad|
| 9126|New|Blk|2002-05-15|68k-next-openstep v. 4.0  |
| 9726|New|Min|2002-06-09|Double quotes should be flagged as T_HTTP_TOKEN_ST|
| 9894|New|Maj|2002-06-16|getline sub in support progs collides with existin|
| |New|Nor|2002-06-19|Incorrect default manualdir value with layout.|
|10038|New|Min|2002-06-20|ab benchmaker hangs on 10K https URLs with keepali|
|10073|New|Maj|2002-06-20|upgrade from 1.3.24 to 1.3.26 breaks include direc|
|10166|Opn|Min|2002-06-24|HTTP/1.1 proxy requests made even when client make|
|10169|New|Nor|2002-06-24|Apache seg faults due to attempt to access out of |
|10178|New|Maj|2002-06-24|Proxy server cuts off begining of buffer when spec|
|10195|New|Nor|2002-06-24|Configure script erroneously detects system Expat |
|10199|New|Nor|2002-06-24|Configure can't handle directory names with unders|
|10243|New|Maj|2002-06-26|CGI scripts not getting POST data |
|10354|New|Nor|2002-06-30|ErrorDocument(.htaccess) fails when passed URL wit|
|10446|Opn|Blk|2002-07-03|spaces in link to http server seen as foreign char|
|10666|New|Enh|2002-07-10|line-end comment error message missing file name  |
|10744|New|Nor|2002-07-12|suexec might fail to open log file|
|10747|New|Maj|2002-07-12|ftp SIZE command and 'smart' ftp servers results i|
|10760|New|Maj|2002-07-12|empty ftp directory listings from cached ftp direc|
|10939|New|Maj|2002-07-18|directory listing errors  |
|11020|New|Maj|2002-07-21|APXS only recognise tests made by ./configure |
|11236|New|Min|2002-07-27|Possible Log exhaustion bug?  |
|11265|New|Blk|2002-07-29|mod_rewrite fails to encode special characters|
|11765|New|Nor|2002-08-16|.apaci.install.tmp installs in existing httpd.conf|
|11986|New|Nor|2002-08-23|Restart hangs when piping logs on rotation log pro|
|12096|New|Nor|2002-08-27|apxs does not handle binary dists installed at non|
|12574|New|Nor|2002-09-12|Broken images comes from mod_proxy when caching ww|
|12583|New|Nor|2002-09-12|First piped log process do not handle SIGTERM |
|12598|Opn|Maj|2002-09-12|Apache hanging in Keepalive State |
|12770|Opn|Nor|2002-09-18|ErrorDocument fail redirecting error 400  |
|13188|New|Nor|2002-10-02|does not configure correctly for hppa64-hp-hpux11.|
|13274|Ass|Nor|2002-10-04|Subsequent requests are destroyed by the request e|
|13607|Opn|Enh|2002-10-14|Catch-all enhancement for vhost_alias?|
|13687|New|Min|2002-10-16|Leave Debug symbol on Darwin  |
|13822|New|Maj|2002-10-21|Problem while running Perl modules accessing CGI::|
|14095|Opn|Nor|2002-10-30|Change default Content-Type (DefaultType) in defau|
|14250|New|Maj|2002-11-05|Alternate UserDirs don't work intermittantly  |
|14443|New|Maj|2002-11-11|Keep-Alive randomly causes TCP RSTs   |
|14448|Opn|Cri|2002-11-11|Apache WebServer not starting if installed on Comp|
|14518|Opn|Nor|2002-11-13|QUERY_STRING parts not incorporated by mod_rewrite|
|14670|New|Cri|2002-11-19|Apache didn't deallocate unused memory|
|14748|New|Nor|2002-11-21|Configure Can't find DBM on Mac OS X  |
|15011|New|Nor|2002-12-03|Apache processes not timing out on Solaris 8  |
|15028|New|Maj|2002-12-03|RedirectMatch does not escape properly|
|16013|Opn|Nor|2003-01-13|Fooling mod_autoindex + IndexIgnore   |
|16236|New|Maj|2003-01-18|Include directive in Apache is not parsed within c|
|16241|New|Maj|2003-01-19|Apache processes takes 100% CPU until killed manua|

Re: [VOTE] Apache HTTP Server 1.3.36 Candidate

2006-05-14 Thread David McCreedy




+1 for IBM's TPF platform.

David McCreedy

  - Original Message - 
  From: Jim Jagielski 
  To: dev@httpd.apache.org ; testers@httpd.apache.org 
  Sent: Sunday, May 14, 2006 7:34 AM
  Subject: [VOTE] Apache HTTP Server 1.3.36 
  Candidate
  Please test and vote on releasing Apache httpd 
  1.3.36Download from: http://httpd.apache.org/dev/dist/Changes: 
  http://httpd.apacheorg/dev/dist/CHANGES_1.3MD5s: 
  MD5 (apache_1.3.36.tar.Z) = 
  2c310916fb97a9d4d700d8b8fad29423 MD5 
  (apache_1.3.36.tar.gz) = d6c0709fc1f20d6d93d30435fcfc4843(NOTE: http://people.apache.org/~jim/apache_1.3.36/ 
  isalso a valid URL to use until httpd.apache.org syncswith 
  people.apache.org)-- 
  === Jim Jagielski [|] [EMAIL PROTECTED] [|] 
  http:// www.jaguNET.com/ 
  "If you can dodge a wrench, you can dodge a 
ball."