ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcpjit/config.h.in
Revision: 1.2
Committed: Tue Oct 11 22:06:24 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
Changes since 1.1: +81 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /* config.h.in. Generated from configure.ac by autoheader. */
2    
3 root 1.2 /* Define to 1 if you have the <inttypes.h> header file. */
4     #undef HAVE_INTTYPES_H
5    
6     /* Define to 1 if you have the <memory.h> header file. */
7     #undef HAVE_MEMORY_H
8    
9     /* Define to 1 if you have the <stdint.h> header file. */
10     #undef HAVE_STDINT_H
11    
12     /* Define to 1 if you have the <stdlib.h> header file. */
13     #undef HAVE_STDLIB_H
14    
15     /* Define to 1 if you have the <strings.h> header file. */
16     #undef HAVE_STRINGS_H
17    
18     /* Define to 1 if you have the <string.h> header file. */
19     #undef HAVE_STRING_H
20    
21     /* Define to 1 if you have the <sys/stat.h> header file. */
22     #undef HAVE_SYS_STAT_H
23    
24     /* Define to 1 if you have the <sys/types.h> header file. */
25     #undef HAVE_SYS_TYPES_H
26    
27     /* Define to 1 if you have the <unistd.h> header file. */
28     #undef HAVE_UNISTD_H
29    
30 root 1.1 /* Define to the address where bug reports for this package should be sent. */
31     #undef PACKAGE_BUGREPORT
32    
33     /* Define to the full name of this package. */
34     #undef PACKAGE_NAME
35    
36     /* Define to the full name and version of this package. */
37     #undef PACKAGE_STRING
38    
39     /* Define to the one symbol short name of this package. */
40     #undef PACKAGE_TARNAME
41    
42     /* Define to the version of this package. */
43     #undef PACKAGE_VERSION
44 root 1.2
45     /* The size of a `char', as computed by sizeof. */
46     #undef SIZEOF_CHAR
47    
48     /* The size of a `int', as computed by sizeof. */
49     #undef SIZEOF_INT
50    
51     /* The size of a `long', as computed by sizeof. */
52     #undef SIZEOF_LONG
53    
54     /* The size of a `long long', as computed by sizeof. */
55     #undef SIZEOF_LONG_LONG
56    
57     /* The size of a `short', as computed by sizeof. */
58     #undef SIZEOF_SHORT
59    
60     /* Define to 1 if you have the ANSI C header files. */
61     #undef STDC_HEADERS
62    
63    
64    
65     #if SIZEOF_CHAR == 1
66     # define TYPE_INT8 char
67     #else
68     # error no 8-bit type found
69     #endif
70    
71     #if SIZEOF_SHORT == 2
72     # define TYPE_INT16 short
73     #elif SIZEOF_INT == 2
74     # define TYPE_INT16 int
75     #else
76     # error no 16-bit type found
77     #endif
78    
79     #if SIZEOF_INT == 4
80     # define TYPE_INT32 int
81     #elif SIZEOF_LONG == 4
82     # define TYPE_INT32 long
83     #else
84     # error no 32-bit type found
85     #endif
86    
87     #if SIZEOF_INT == 8
88     # define TYPE_INT64 short
89     #elif SIZEOF_LONG == 8
90     # define TYPE_INT64 long
91     #elif SIZEOF_LONG_LONG == 8
92     # define TYPE_INT64 long long
93     #else
94     # error no 64-bit type found
95     #endif
96    
97