rse         99/06/29 07:16:46

  Modified:    src      CHANGES
               src/regex debug.c main.c split.c
  Log:
  Fix `make r' test procedure in src/regex/: ap_isprint was not found.
  Additionally get rid of some warnings given by EGCS.
  
  PR: 4561, 4562
  
  Revision  Changes    Path
  1.1388    +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1387
  retrieving revision 1.1388
  diff -u -r1.1387 -r1.1388
  --- CHANGES   1999/06/24 16:38:35     1.1387
  +++ CHANGES   1999/06/29 14:16:42     1.1388
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.7
   
  +  *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
  +     [Ralf S. Engelschall] PR#4561, PR#4562
  +
     *) OS/2: Fix problem with accept lock semaphores where server would die 
with
        "OS2SEM: Error 105 getting accept lock. Exiting!" 
        [Brian Havard] PR#4505
  
  
  
  1.5       +1 -0      apache-1.3/src/regex/debug.c
  
  Index: debug.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/regex/debug.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- debug.c   1998/07/08 17:47:26     1.4
  +++ debug.c   1999/06/29 14:16:45     1.5
  @@ -6,6 +6,7 @@
   #include <sys/types.h>
   
   #include "hsregex.h"
  +#include "ap_ctype.h"
   #include "utils.h"
   #include "regex2.h"
   #include "debug.ih"
  
  
  
  1.4       +2 -2      apache-1.3/src/regex/main.c
  
  Index: main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/regex/main.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- main.c    1998/02/04 18:18:53     1.3
  +++ main.c    1999/06/29 14:16:45     1.4
  @@ -20,6 +20,8 @@
   
   extern int split();
   extern void regprint();
  +extern int optind;
  +extern char *optarg;
   
   /*
    - main - do the simple case, hand off to regress() for regression
  @@ -37,8 +39,6 @@
        int c;
        int errflg = 0;
        register int i;
  -     extern int optind;
  -     extern char *optarg;
   
        progname = argv[0];
   
  
  
  
  1.2       +2 -0      apache-1.3/src/regex/split.c
  
  Index: split.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/regex/split.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- split.c   1996/07/23 22:06:47     1.1
  +++ split.c   1999/06/29 14:16:45     1.2
  @@ -1,6 +1,8 @@
   #include <stdio.h>
   #include <string.h>
   
  +extern int split(char *, char *[], int, char *);
  +
   /*
    - split - divide a string into fields, like awk split()
    = int split(char *string, char *fields[], int nfields, char *sep);
  
  
  

Reply via email to