You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@apache.org on 2001/02/07 17:40:54 UTC

cvs commit: apr/helpers apr-conf.m4

rbb         01/02/07 08:40:54

  Modified:    .        CHANGES
               helpers  apr-conf.m4
  Log:
  Fix a problem in configure with the getaddrinfo check.  We need to include
  sys/types.h for some platforms.
  PR:	7065
  Submitted by:	jun-ichiro hagino <it...@kame.net>
  Reviewed by:	Ryan Bloom
  
  Revision  Changes    Path
  1.55      +4 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -d -b -w -u -r1.54 -r1.55
  --- CHANGES	2001/02/02 14:43:51	1.54
  +++ CHANGES	2001/02/07 16:40:52	1.55
  @@ -1,4 +1,8 @@
   Changes with APR b1  
  +
  +  *) Fix a problem with configure on NetBSD.  We must include sys/types.h
  +     for some platforms.  [jun-ichiro hagino <it...@kame.net>]
  +
     *) Some fixes in the Win32 time support.
        (IsLeapYear): New macro for quickly figgerin' out if a given year is a 
        leap year. (SystemTimeToAprExpTime): Perform the calculation of
  
  
  
  1.4       +3 -0      apr/helpers/apr-conf.m4
  
  Index: apr-conf.m4
  ===================================================================
  RCS file: /home/cvs/apr/helpers/apr-conf.m4,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -d -b -w -u -r1.3 -r1.4
  --- apr-conf.m4	2001/01/09 11:05:49	1.3
  +++ apr-conf.m4	2001/02/07 16:40:54	1.4
  @@ -204,6 +204,9 @@
   #ifdef HAVE_STRING_H
   #include <string.h>
   #endif
  +#ifdef HAVE_SYS_TYPES_H
  +#include <sys/types.h>
  +#endif
   #ifdef HAVE_SYS_SOCKET_H
   #include <sys/socket.h>
   #endif