ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcpjit/config.h.in
Revision: 1.3
Committed: Sat Oct 15 00:00:59 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +15 -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.3 /* The C compiler to use */
4     #undef CC
5    
6     /* Compiler flags */
7     #undef CFLAGS
8    
9 root 1.2 /* Define to 1 if you have the <inttypes.h> header file. */
10     #undef HAVE_INTTYPES_H
11    
12     /* Define to 1 if you have the <memory.h> header file. */
13     #undef HAVE_MEMORY_H
14    
15     /* Define to 1 if you have the <stdint.h> header file. */
16     #undef HAVE_STDINT_H
17    
18     /* Define to 1 if you have the <stdlib.h> header file. */
19     #undef HAVE_STDLIB_H
20    
21     /* Define to 1 if you have the <strings.h> header file. */
22     #undef HAVE_STRINGS_H
23    
24     /* Define to 1 if you have the <string.h> header file. */
25     #undef HAVE_STRING_H
26    
27     /* Define to 1 if you have the <sys/stat.h> header file. */
28     #undef HAVE_SYS_STAT_H
29    
30     /* Define to 1 if you have the <sys/types.h> header file. */
31     #undef HAVE_SYS_TYPES_H
32    
33     /* Define to 1 if you have the <unistd.h> header file. */
34     #undef HAVE_UNISTD_H
35    
36 root 1.3 /* The linker to use */
37     #undef LD
38    
39     /* How to combine object files */
40     #undef LD_R
41    
42     /* Linker flags */
43     #undef LFLAGS
44    
45 root 1.1 /* Define to the address where bug reports for this package should be sent. */
46     #undef PACKAGE_BUGREPORT
47    
48     /* Define to the full name of this package. */
49     #undef PACKAGE_NAME
50    
51     /* Define to the full name and version of this package. */
52     #undef PACKAGE_STRING
53    
54     /* Define to the one symbol short name of this package. */
55     #undef PACKAGE_TARNAME
56    
57     /* Define to the version of this package. */
58     #undef PACKAGE_VERSION
59 root 1.2
60     /* The size of a `char', as computed by sizeof. */
61     #undef SIZEOF_CHAR
62    
63     /* The size of a `int', as computed by sizeof. */
64     #undef SIZEOF_INT
65    
66     /* The size of a `long', as computed by sizeof. */
67     #undef SIZEOF_LONG
68    
69     /* The size of a `long long', as computed by sizeof. */
70     #undef SIZEOF_LONG_LONG
71    
72     /* The size of a `short', as computed by sizeof. */
73     #undef SIZEOF_SHORT
74    
75     /* Define to 1 if you have the ANSI C header files. */
76     #undef STDC_HEADERS
77    
78    
79    
80     #if SIZEOF_CHAR == 1
81     # define TYPE_INT8 char
82     #else
83     # error no 8-bit type found
84     #endif
85    
86     #if SIZEOF_SHORT == 2
87     # define TYPE_INT16 short
88     #elif SIZEOF_INT == 2
89     # define TYPE_INT16 int
90     #else
91     # error no 16-bit type found
92     #endif
93    
94     #if SIZEOF_INT == 4
95     # define TYPE_INT32 int
96     #elif SIZEOF_LONG == 4
97     # define TYPE_INT32 long
98     #else
99     # error no 32-bit type found
100     #endif
101    
102     #if SIZEOF_INT == 8
103     # define TYPE_INT64 short
104     #elif SIZEOF_LONG == 8
105     # define TYPE_INT64 long
106     #elif SIZEOF_LONG_LONG == 8
107     # define TYPE_INT64 long long
108     #else
109     # error no 64-bit type found
110     #endif
111    
112