]> git.saurik.com Git - apt.git/blob - buildlib/config.h.in
Regexs for install
[apt.git] / buildlib / config.h.in
1 /* Define if your processor stores words with the most significant
2 byte first (like Motorola and SPARC, unlike Intel and VAX). */
3 #undef WORDS_BIGENDIAN
4
5 /* The number of bytes in a usigned char. */
6 #undef SIZEOF_CHAR
7
8 /* The number of bytes in a unsigned int. */
9 #undef SIZEOF_INT
10
11 /* The number of bytes in a unsigned long. */
12 #undef SIZEOF_LONG
13
14 /* The number of bytes in a unsigned short. */
15 #undef SIZEOF_SHORT
16
17 /* Define if we have libgpm. */
18 #undef HAVE_LIBGPM
19
20 /* Define if we have the SLang library from Davis. */
21 #undef HAVE_LIBSLANG
22
23 /* Define if we have the X11 windowing system. */
24 #undef HAVE_X11
25
26 /* Define if we have enabled pthread support */
27 #undef HAVE_PTHREAD
28
29 /* Define the architecture name string */
30 #undef ARCHITECTURE
31
32 /* The version number string */
33 #undef VERSION
34
35 /* The package name string */
36 #undef PACKAGE
37
38 /* Generate the fixed bit size types */
39 #if SIZEOF_INT == 4
40 # define INT32 int
41 # define UINT32 unsigned int
42 #else
43 # if SIZEOF_LONG == 4
44 # define INT32 long
45 # define UINT32 unsigned long
46 # else
47 # if SIZEOF_SHORT == 4
48 # define INT32 short
49 # define UINT32 unsigned short
50 # else
51 # error Must have a form of 32-bit integer
52 # endif
53 # endif
54 #endif
55
56 #if SIZEOF_INT == 2
57 # define INT16 int
58 # define UINT16 unsigned int
59 #else
60 # if SIZEOF_LONG == 2
61 # define INT16 long
62 # define UINT16 unsigned long
63 # else
64 # if SIZEOF_SHORT == 2
65 # define INT16 short
66 # define UINT16 short
67 # else
68 # error Must have a form of 16-bit integer
69 # endif
70 # endif
71 #endif