cvs commit: apache-1.3/src/support apxs.pl

2000-02-06 Thread rse
rse 00/02/06 05:16:02

  Modified:src  CHANGES
   src/support apxs.pl
  Log:
  Fix handling of multiple queries in APXS commands (e.g. "apxs -q
  CC CFLAGS") and make sure Perl-related command line options (which
  can contain the "::" constructs) do no longer cause an incorrect
  internal parsing of the query result.
  
  Submitted by: Ralf S. Engelschall
  Hints by: Steve Robb <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.1512+6 -0  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1511
  retrieving revision 1.1512
  diff -u -r1.1511 -r1.1512
  --- CHANGES   2000/02/05 14:28:54 1.1511
  +++ CHANGES   2000/02/06 13:15:59 1.1512
  @@ -1,5 +1,11 @@
   Changes with Apache 1.3.12
   
  +  *) Fix handling of multiple queries in APXS commands (e.g. "apxs -q
  + CC CFLAGS") and make sure Perl-related command line options (which
  + can contain the "::" constructs) do no longer cause an incorrect
  + internal parsing of the query result.
  + [Ralf S. Engelschall, Steve Robb <[EMAIL PROTECTED]>]
  +
 *) Avoid infinite looping in APACI's configure script
inside Ultrix' /bin/sh5 upgrade step.
[Jan Gallo <[EMAIL PROTECTED]>, Ralf S. Engelschall] PR#4940
  
  
  
  1.32  +3 -3  apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===
  RCS file: /home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- apxs.pl   1999/12/16 16:10:30 1.31
  +++ apxs.pl   2000/02/06 13:16:02 1.32
  @@ -297,7 +297,7 @@
   )) {
   if ($arg eq $name or $arg eq lc($name)) {
   my $val = eval "\$CFG_$name";
  -$result .= "${val}::";
  +$result .= "${val}##";
   $ok = 1;
   }
   }
  @@ -306,8 +306,8 @@
   exit(1);
   }
   }
  -$result =~ s|::$||;
  -$result =~ s|::| |;
  +$result =~ s|##$||;
  +$result =~ s|##| |g;
   print $result;
   }
   
  
  
  


cvs commit: apache-1.3/src/modules/standard mod_mime.c

2000-02-06 Thread bjh
bjh 00/02/05 19:53:14

  Modified:src/modules/standard mod_mime.c
  Log:
  Use ap_isgraph instead of isgraph to avoid "subscript has type `char'"
  warning.
  
  Revision  ChangesPath
  1.54  +1 -1  apache-1.3/src/modules/standard/mod_mime.c
  
  Index: mod_mime.c
  ===
  RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_mime.c,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- mod_mime.c2000/01/11 14:13:49 1.53
  +++ mod_mime.c2000/02/06 03:53:11 1.54
  @@ -345,7 +345,7 @@
   {
   int res;
   
  -res = (ap_isascii(c) && isgraph(c)
  +res = (ap_isascii(c) && ap_isgraph(c)
   && (strchr(tspecial, c) == NULL)) ? 1 : -1;
   return res;
   }
  
  
  


cvs commit: apache-1.3/src Configure

2000-02-06 Thread martin
martin  00/02/05 17:27:24

  Modified:src  Configure
  Log:
  Improve DSO default for SINIX cc
  
  Revision  ChangesPath
  1.393 +1 -1  apache-1.3/src/Configure
  
  Index: Configure
  ===
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.392
  retrieving revision 1.393
  diff -u -r1.392 -r1.393
  --- Configure 2000/02/05 14:15:42 1.392
  +++ Configure 2000/02/06 01:27:19 1.393
  @@ -1226,7 +1226,7 @@
# Older SINIX machines must be linked as "shared core"-Apache
case $CC in
*/gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
  - */cc|cc   ) CFLAGS_SHLIB="-KPIC" ;;
  + *)  CFLAGS_SHLIB="-KPIC" ;;
esac
LDFLAGS_SHLIB="-G"
LDFLAGS_MOD_SHLIB=$LDFLAGS_SHLIB