Ticket #32936: libtiff__tiffconf.h.ed.diff

File libtiff__tiffconf.h.ed.diff, 494 bytes (added by someuser12, 12 years ago)
  • libtiff__tiffconf.h.ed

    old new  
    1 /#define SIZEOF_LONG/c
     1/#define TIFF_INT64_T/c
    22#ifdef __LP64__
    3 #define SIZEOF_LONG 8
     3#define TIFF_INT64_T signed long
    44#else
    5 #define SIZEOF_LONG 4
     5#define TIFF_INT64_T signed long long
     6#endif
     7.
     8/#define TIFF_UINT64_T/c
     9#ifdef __LP64__
     10#define TIFF_UINT64_T unsigned long
     11#else
     12#define TIFF_UINT64_T unsigned long long
    613#endif
    714.
    815w