@@ -335,41 +335,25 @@ the sizes can be different.*/
335
335
336
336
/* Signed 16-bit type */
337
337
#undef TIFF_INT16_T
338
- #if defined( HAVE_STDINT_H )
339
338
#define TIFF_INT16_T int16_t
340
- #else
341
- #define TIFF_INT16_T KWIML_INT_int16_t
342
- #endif
343
339
344
340
/* Signed 32-bit type formatter */
345
341
#define TIFF_INT32_FORMAT "%d"
346
342
347
343
/* Signed 32-bit type */
348
344
#undef TIFF_INT32_T
349
- #if defined( HAVE_STDINT_H )
350
345
#define TIFF_INT32_T int32_t
351
- #else
352
- #define TIFF_INT32_T KWIML_INT_int32_t
353
- #endif
354
346
355
347
/* Signed 64-bit type formatter */
356
348
#define TIFF_INT64_FORMAT "%ld"
357
349
358
350
/* Signed 64-bit type */
359
351
#undef TIFF_INT64_T
360
- #if defined( HAVE_STDINT_H )
361
352
#define TIFF_INT64_T int64_t
362
- #else
363
- #define TIFF_INT64_T KWIML_INT_int64_t
364
- #endif
365
353
366
354
/* Signed 8-bit type */
367
355
#undef TIFF_INT8_T
368
- #if defined( HAVE_STDINT_H )
369
356
#define TIFF_INT8_T int8_t
370
- #else
371
- #define TIFF_INT8_T KWIML_INT_int8_t
372
- #endif
373
357
374
358
/* Pointer difference type formatter */
375
359
#define TIFF_PTRDIFF_FORMAT "%ld"
@@ -386,41 +370,25 @@ the sizes can be different.*/
386
370
387
371
/* Unsigned 16-bit type */
388
372
#undef TIFF_UINT16_T
389
- #if defined( HAVE_STDINT_H )
390
373
#define TIFF_UINT16_T uint16_t
391
- #else
392
- #define TIFF_UINT16_T KWIML_INT_uint16_t
393
- #endif
394
374
395
375
/* Unsigned 32-bit type formatter */
396
376
#define TIFF_UINT32_FORMAT "%d"
397
377
398
378
/* Unsigned 32-bit type */
399
379
#undef TIFF_UINT32_T
400
- #if defined( HAVE_STDINT_H )
401
380
#define TIFF_UINT32_T uint32_t
402
- #else
403
- #define TIFF_UINT32_T KWIML_INT_uint32_t
404
- #endif
405
381
406
382
/* Unsigned 64-bit type formatter */
407
383
#define TIFF_UINT64_FORMAT "%ld"
408
384
409
385
/* Unsigned 64-bit type */
410
386
#undef TIFF_UINT64_T
411
- #if defined( HAVE_STDINT_H )
412
387
#define TIFF_UINT64_T uint64_t
413
- #else
414
- #define TIFF_UINT64_T KWIML_INT_uint64_t
415
- #endif
416
388
417
389
/* Unsigned 8-bit type */
418
390
#undef TIFF_UINT8_T
419
- #if defined( HAVE_STDINT_H )
420
391
#define TIFF_UINT8_T uint8_t
421
- #else
422
- #define TIFF_UINT8_T KWIML_INT_uint8_t
423
- #endif
424
392
425
393
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
426
394
#cmakedefine TIME_WITH_SYS_TIME
0 commit comments