Ticket #20326: patch-include-apr.hnw.diff

File patch-include-apr.hnw.diff, 695 bytes (added by nerdling (Jeremy Lavergne), 15 years ago)

changes to include/apr.hnw

  • apr.hnw

    old new  
    240240typedef  int               apr_int32_t;
    241241typedef  unsigned int      apr_uint32_t;
    242242
    243 typedef  long long          apr_int64_t;
    244 typedef  unsigned long long apr_uint64_t;
     243typedef  int64_t apr_int64_t;
     244typedef  uint64_t apr_uint64_t;
    245245
    246246typedef  size_t            apr_size_t;
    247247typedef  ssize_t           apr_ssize_t;
     
    262262#define APR_IS_BIGENDIAN        0
    263263
    264264#ifdef UNKNOWN_NETWARE_64BIT_FLAG_NEEDED
    265 #define APR_SIZEOF_VOIDP   8
     265#ifndef __LP64__
     266#define APR_SIZEOF_VOIDP 4
    266267#else
     268#define APR_SIZEOF_VOIDP 8
     269#endif#else
    267270#define APR_SIZEOF_VOIDP   4
    268271#endif
    269272