dreid       01/04/12 06:05:38

  Modified:    .        configure.in
  Log:
  If we don't have stdint.h then this stops the build from breaking as we
  don't then have anything in apr.h.  Not sure the logic is what was intended,
  but as we only really need to include stdint.h for one macro, if we have the
  header but not the macro seems reasonable to drop the header.
  
  Revision  Changes    Path
  1.290     +2 -0      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.289
  retrieving revision 1.290
  diff -u -r1.289 -r1.290
  --- configure.in      2001/04/12 07:05:46     1.289
  +++ configure.in      2001/04/12 13:05:38     1.290
  @@ -651,6 +651,8 @@
   if test "$ac_cv_define_INT64_C" = "yes"; then
       int64_literal='#define APR_INT64_C(val) INT64_C(val)'
       stdint=1
  +else
  +    stdint=0
   fi
   
   if test "$ac_cv_type_off_t" = "yes"; then
  
  
  

Reply via email to