DO NOT REPLY [Bug 7862] New: - suexec never log a group name.

2002-04-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7862.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7862

suexec never log a group name.

   Summary: suexec never log a group name.
   Product: Apache httpd-2.0
   Version: HEAD
  Platform: All
OS/Version: All
Status: NEW
  Severity: Major
  Priority: Other
 Component: All
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


suexec never log a group name.
I think the following patch works fine:

Index: support/suexec.c
===
RCS file: /Apache/CVS/httpd-2.0-cvs/support/suexec.c,v
retrieving revision 1.19
diff -u -r1.19 suexec.c
--- support/suexec.c13 Mar 2002 20:48:06 -  1.19
+++ support/suexec.c9 Apr 2002 11:16:02 -
@@ -399,7 +399,11 @@
 }
 else {
 gid = atoi(target_gname);
-actual_gname = strdup(target_gname);
+   if ((gr = getgrgid(gid)) == NULL) {
+   log_err(invalid target group name: (%s)\n, target_gname);
+   exit(106);
+   }
+actual_gname = strdup(gr-gr_name);
 }
 
 #ifdef _OSD_POSIX


DO NOT REPLY [Bug 7867] New: - configure/compile error

2002-04-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7867.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7867

configure/compile error

   Summary: configure/compile error
   Product: Apache httpd-2.0
   Version: 2.0.35
  Platform: Sun
OS/Version: Solaris
Status: NEW
  Severity: Normal
  Priority: Other
 Component: All
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


trying to compile Apache 2.0.35 under Solaris 2.8, with:
./configure --prefix=/INFO/localinfo1/WWW/Apache2/Port83 --with-port=83 
--enable-modules=most --enable-modules-shared=max --enable-ssl --enable-dav 
--enable-info --enable-cgi --enable-so

make clean, then make, and I keep getting this error:
/bin/sh /INFO/localinfo1/WWW/Apache2/httpd-2.0.35/srclib/apr/libtool --silent --
mode=compile gcc   -O2 -DHAVE_CONFIG_H -DSOLARIS2=8 -D_POSIX_PTHREAD_SEMANTICS -
D_REENTRANT   -I../../include -I../../include/arch/unix  -c procsup.c  touch 
procsup.lo
/bin/sh /INFO/localinfo1/WWW/Apache2/httpd-2.0.35/srclib/apr/libtool --silent --
mode=compile gcc   -O2 -DHAVE_CONFIG_H -DSOLARIS2=8 -D_POSIX_PTHREAD_SEMANTICS -
D_REENTRANT   -I../../include -I../../include/arch/unix  -c thread.c  touch 
thread.lo
thread.c: In function `apr_threadattr_detach_get':
thread.c:115: too few arguments to function `pthread_attr_getdetachstate'
make[4]: *** [thread.lo] Error 1
make[4]: Leaving directory `/INFO/localinfo1/WWW/Apache2/httpd-
2.0.35/srclib/apr/threadproc/unix'


DO NOT REPLY [Bug 7882] New: - env LIBS ignored during build

2002-04-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7882.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7882

env LIBS ignored during build

   Summary: env LIBS ignored during build
   Product: Apache httpd-2.0
   Version: 2.0.35
  Platform: All
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: All
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


The documented method of adding extra libraries to the build process is broken.

Setting LIBS in the envrionment is the normal method of adding extra libraries
to the link line. But with 2.0.35, this variable is not used during the build.
Adding $(ALL_LIBRARIES) into build/programs.mk corrects the problem.

*** build/program.mk.orig   Tue Apr  9 13:55:09 2002
--- build/program.mkTue Apr  9 13:37:52 2002
***
*** 57,60 
  PROGRAM_OBJECTS = $(PROGRAM_SOURCES:.c=.lo)
  
  $(PROGRAM_NAME): $(PROGRAM_DEPENDENCIES) $(PROGRAM_OBJECTS)
!   $(LINK) $(PROGRAM_LDFLAGS) $(PROGRAM_OBJECTS) $(PROGRAM_LDADD)
--- 57,60 
  PROGRAM_OBJECTS = $(PROGRAM_SOURCES:.c=.lo)
  
  $(PROGRAM_NAME): $(PROGRAM_DEPENDENCIES) $(PROGRAM_OBJECTS)
!   $(LINK) $(PROGRAM_LDFLAGS) $(PROGRAM_OBJECTS) $(PROGRAM_LDADD)
$(ALL_LIBS)


DO NOT REPLY [Bug 7874] - mod_proxy not passing through all Set-Cookie fields

2002-04-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7874.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7874

mod_proxy not passing through all Set-Cookie fields

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2002-04-09 19:13 ---


*** This bug has been marked as a duplicate of 7195 ***


DO NOT REPLY [Bug 7889] New: - pcre.c:2534: `pcre_default_tables' undeclared

2002-04-09 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7889.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7889

pcre.c:2534: `pcre_default_tables' undeclared

   Summary: pcre.c:2534: `pcre_default_tables' undeclared
   Product: Apache httpd-2.0
   Version: 2.0.35
  Platform: Sun
OS/Version: Solaris
Status: NEW
  Severity: Critical
  Priority: Other
 Component: All
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


When compiling on Solaris 8 with all recommended patches and gcc-3.0.3, I get a
make error. The symbol `pcre_default_tables' is undeclared on line 2534 of
srclib/pcre/pcre.c (there is a declaration in dftables.c in the same dir).

Configured as:
CC=gcc CFLAGS=-O2 ./configure --enable-auth-dbm --enable-mime-magic
--enable-speling --enable-so