cscript fiddling.
[openjpeg.git] / thirdparty / libtiff / tif_config.h
1 /* Define to 1 if you have the <assert.h> header file. */
2 #define HAVE_ASSERT_H 1
3
4 /* Define to 1 if you have the <fcntl.h> header file. */
5 #define HAVE_FCNTL_H 1
6
7 /* Define as 0 or 1 according to the floating point format suported by the
8    machine */
9 #define HAVE_IEEEFP 1
10
11 /* Define to 1 if you have the `jbg_newlen' function. */
12 #define HAVE_JBG_NEWLEN 1
13
14 /* Define to 1 if you have the <string.h> header file. */
15 #define HAVE_STRING_H 1
16
17 /* Define to 1 if you have the <sys/types.h> header file. */
18 #define HAVE_SYS_TYPES_H 1
19
20 /* Define to 1 if you have the <io.h> header file. */
21 #define HAVE_IO_H 1
22
23 /* Define to 1 if you have the <search.h> header file. */
24 #define HAVE_SEARCH_H 1
25
26 /* Define to 1 if you have the `setmode' function. */
27 #define HAVE_SETMODE 1
28
29 /* The size of a `int', as computed by sizeof. */
30 #define SIZEOF_INT 4
31
32 /* The size of a `long', as computed by sizeof. */
33 #define SIZEOF_LONG 4
34
35
36 #ifdef _MSC_VER
37 /* Signed 64-bit type */
38 #define TIFF_INT64_T signed __int64
39 /* Unsigned 64-bit type */
40 #define TIFF_UINT64_T unsigned __int64
41 #else
42 /* Signed 64-bit type */
43 #define TIFF_INT64_T long long
44 /* Signed 64-bit type */
45 #define TIFF_UINT64_T unsigned long long
46 #endif
47
48 /* Set the native cpu bit order */
49 #define HOST_FILLORDER FILLORDER_LSB2MSB
50
51 /* Define to 1 if your processor stores words with the most significant byte
52    first (like Motorola and SPARC, unlike Intel and VAX). */
53 /* #undef WORDS_BIGENDIAN */
54
55 /* Define to `__inline__' or `__inline' if that's what the C compiler
56    calls it, or to nothing if 'inline' is not supported under any name.  */
57 #ifndef __cplusplus
58 # ifndef inline
59 #  define inline __inline
60 # endif
61 #endif
62
63 #define lfind _lfind
64 /*
65  * Local Variables:
66  * mode: c
67  * c-basic-offset: 8
68  * fill-column: 78
69  * End:
70  */