cvs commit: apache-apr/apr/include apr_config.h.in

1999-05-26 Thread rbb
rbb 99/05/26 13:22:33

  Modified:apr/include apr_config.h.in
  Log:
  Fix a typo.  Would cause problems later on.
  
  Revision  ChangesPath
  1.5   +1 -1  apache-apr/apr/include/apr_config.h.in
  
  Index: apr_config.h.in
  ===
  RCS file: /home/cvs/apache-apr/apr/include/apr_config.h.in,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- apr_config.h.in   1999/04/28 19:43:52 1.4
  +++ apr_config.h.in   1999/05/26 20:22:32 1.5
  @@ -115,7 +115,7 @@
   
   #ifdef HAVE_ERRNO_H
   #include 
  -#endif /* HAVE_ERRNO_H *?
  +#endif /* HAVE_ERRNO_H */
   
   #ifdef HAVE_NET_ERRNO_H
   #include 
  
  
  


cvs commit: apache-apr/apr/include apr_config.h.in

1999-04-28 Thread coar
coar99/04/28 12:43:57

  Modified:apr/include apr_config.h.in
  Log:
Glork.  autoconf & configure don't miss a trick when it comes to
#undef..
  
  Revision  ChangesPath
  1.4   +11 -6 apache-apr/apr/include/apr_config.h.in
  
  Index: apr_config.h.in
  ===
  RCS file: /home/cvs/apache-apr/apr/include/apr_config.h.in,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_config.h.in   1999/04/28 19:20:01 1.3
  +++ apr_config.h.in   1999/04/28 19:43:52 1.4
  @@ -75,17 +75,14 @@
   /*
* Known problems with system header files that we can fix.
*/
  -#ifdef ULTRIX
  -/*
  - * We don't want to include Ultrix's sys/resource.h, even if it's
  - * there.
  - */
  -#undef HAVE_SYS_RESOURCE_H
  +
   /*
* Versions of Ultrix prior to 4.3 included a bundled cc with a broken
* const.  Don't try to use it; in fact, make sure it's define'd away
* before any header files try to use it.
*/
  +#ifdef ULTRIX
  +
   #ifdef __ultrix__
   #define const
   #endif /* __ultrix__ */
  @@ -271,9 +268,17 @@
   #include 
   #endif /* HAVE SYS_PARAM_H */
   
  +#ifndef ULTRIX
  +/*
  + * We don't want to include Ultrix's sys/resource.h, even if it's
  + * there.
  + */
  +
   #ifdef HAVE_SYS_RESOURCE_H
   #include 
   #endif /* HAVE_SYS_RESOURCE_H */
  +
  +#endif /* ULTRIX */
   
   #ifdef HAVE_SYS_SELECT_H
   #include 
  
  
  


cvs commit: apache-apr/apr/include apr_config.h.in

1999-04-09 Thread bjh
bjh 99/04/08 22:37:01

  Modified:apr  configure.in
   apr/include apr_config.h.in
  Log:
  Some tweaks to autoconf for building under OS/2
  
  Revision  ChangesPath
  1.3   +5 -0  apache-apr/apr/configure.in
  
  Index: configure.in
  ===
  RCS file: /home/cvs/apache-apr/apr/configure.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- configure.in  1999/03/25 20:12:21 1.2
  +++ configure.in  1999/04/09 05:37:00 1.3
  @@ -7,6 +7,7 @@
[OPTIM="$withval"])
   
   dnl Checks for programs.
  +AC_PROG_CC
   AC_PROG_RANLIB
   
   dnl Checks for libraries.
  @@ -56,6 +57,10 @@
LDLIBS="$LDLIBS -lm"
;;
   esac
  +fi
  +
  +if (test "$SYS_SW" = "OS/2"); then
  +CFLAGS="$CFLAGS -DOS2"
   fi
   
   dnl Checks for header files.
  
  
  
  1.2   +6 -4  apache-apr/apr/include/apr_config.h.in
  
  Index: apr_config.h.in
  ===
  RCS file: /home/cvs/apache-apr/apr/include/apr_config.h.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_config.h.in   1999/03/24 18:39:09 1.1
  +++ apr_config.h.in   1999/04/09 05:37:00 1.2
  @@ -77,6 +77,10 @@
* We now know what we have, so make use of it.
*/
   
  +#ifdef HAVE_SYS_TYPES_H
  +#include 
  +#endif
  +
   #ifdef HAVE_CRYPT_H
   #include 
   #endif
  @@ -208,9 +212,11 @@
   #include 
   #endif
   
  +#ifndef OS2
   #ifdef HAVE_ARPA_INET_H
   #include 
   #endif
  +#endif
   
   #ifdef HAVE_NETINET_IN_H
   #include 
  @@ -246,10 +252,6 @@
   
   #ifdef HAVE_SYS_STAT_H
   #include 
  -#endif
  -
  -#ifdef HAVE_SYS_TYPES_H
  -#include 
   #endif
   
   #ifdef HAVE__SYS_WAIT_H