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