You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/06/03 17:59:38 UTC

cvs commit: apache-2.0/src/lib/apr/test client.c testoc.c testproc.c testshmem.c testtime.c

bjh         00/06/03 08:59:38

  Modified:    src/lib/apr/test client.c testoc.c testproc.c testshmem.c
                        testtime.c
  Log:
  Prevent incorrect generation of dependencies on system header files by
  using angle brackets instead of quotes in their #includes
  
  Revision  Changes    Path
  1.12      +1 -1      apache-2.0/src/lib/apr/test/client.c
  
  Index: client.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/client.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- client.c	2000/04/28 18:48:14	1.11
  +++ client.c	2000/06/03 15:59:37	1.12
  @@ -56,7 +56,7 @@
   #include "apr_network_io.h"
   #include "apr_errno.h"
   #include "apr_general.h"
  -#include "errno.h"
  +#include <errno.h>
   
   #define STRLEN 15
   
  
  
  
  1.10      +1 -1      apache-2.0/src/lib/apr/test/testoc.c
  
  Index: testoc.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testoc.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- testoc.c	2000/05/24 22:18:04	1.9
  +++ testoc.c	2000/06/03 15:59:38	1.10
  @@ -56,7 +56,7 @@
   #include "apr_errno.h"
   #include "apr_general.h"
   #include "apr_lib.h"
  -#include "errno.h"
  +#include <errno.h>
   #include <stdio.h>
   #include <stdlib.h>
   #ifdef HAVE_UNISTD_H
  
  
  
  1.18      +1 -1      apache-2.0/src/lib/apr/test/testproc.c
  
  Index: testproc.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testproc.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- testproc.c	2000/05/24 22:14:51	1.17
  +++ testproc.c	2000/06/03 15:59:38	1.18
  @@ -56,7 +56,7 @@
   #include "apr_errno.h"
   #include "apr_general.h"
   #include "apr_lib.h"
  -#include "errno.h"
  +#include <errno.h>
   #ifndef WIN32
   #include <unistd.h>
   #endif
  
  
  
  1.9       +1 -1      apache-2.0/src/lib/apr/test/testshmem.c
  
  Index: testshmem.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testshmem.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- testshmem.c	2000/04/22 05:09:35	1.8
  +++ testshmem.c	2000/06/03 15:59:38	1.9
  @@ -57,7 +57,7 @@
   #include "apr_errno.h"
   #include "apr_general.h"
   #include "apr_lib.h"
  -#include "errno.h"
  +#include <errno.h>
   #include <stdio.h>
   #include <stdlib.h>
   /*#include <process.h>*/
  
  
  
  1.8       +1 -1      apache-2.0/src/lib/apr/test/testtime.c
  
  Index: testtime.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/test/testtime.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- testtime.c	2000/03/31 08:36:21	1.7
  +++ testtime.c	2000/06/03 15:59:38	1.8
  @@ -55,7 +55,7 @@
   #include "apr_time.h"
   #include "apr_errno.h"
   #include "apr_general.h"
  -#include "errno.h"
  +#include <errno.h>
   #include <stdio.h>
   #ifdef BEOS
   #include <unistd.h>