[EMAIL PROTECTED] writes:

> jim         01/02/26 11:56:14
> 
>   Modified:    .        configure.in
>   Log:
>   Use APR_CHECK_HEADERS instead

One of these commits seems to have broken every case where we
previously checked for the header but didn't set a flag.

In those cases, we had symbols defined in
include/arch/unix/apr_private.h.

One example:

  <sys/stat.h>

old code:

  AC_CHECK_HEADERS(sys/stat.h)

in apr_private.h:

  #define HAVE_SYS_STAT_H

  or

  /* #undef HAVE_SYS_STAT_H */

-------------------------------------------

new code: 

  APR_FLAG_HEADERS(sys/stat.h)

  there is nothing in apr_private.h for HAVE_SYS_STAT_H

-- 
Jeff Trawick | [EMAIL PROTECTED] | PGP public key at web site:
       http://www.geocities.com/SiliconValley/Park/9289/
             Born in Roswell... married an alien...

Reply via email to