1#   ifndef	BITMAP_CONFIG_H
2#   define	BITMAP_CONFIG_H
3
4/* Define to empty if the keyword does not work.  */
5#undef const
6
7/* Define if you have the ANSI C header files.  */
8#undef STDC_HEADERS
9
10/* Define if your processor stores words with the most significant
11   byte first (like Motorola and SPARC, unlike Intel and VAX).  */
12#undef WORDS_BIGENDIAN
13
14/* Define if you have the socket function.  */
15#undef HAVE_SOCKET
16
17/* Define if you have the strerror function.  */
18#undef HAVE_STRERROR
19
20/* Define if you have the uname function.  */
21#undef HAVE_UNAME
22
23/* Define if you have the <fcntl.h> header file.  */
24#undef HAVE_FCNTL_H
25
26/* Define if you have the <sys/time.h> header file.  */
27#undef HAVE_SYS_TIME_H
28
29/* Define if you have the <unistd.h> header file.  */
30#undef HAVE_UNISTD_H
31
32#undef SIZEOF_SHORT
33#undef SIZEOF_INT
34#undef SIZEOF_LONG
35#undef SIZEOF_UNSIGNED_SHORT
36#undef SIZEOF_UNSIGNED_INT
37#undef SIZEOF_UNSIGNED_LONG
38
39#   if SIZEOF_UNSIGNED_SHORT == 2
40	typedef unsigned short	BmUint16;
41#   else
42#	if SIZEOF_UNSIGNED_INT == 2
43	typedef unsigned int	BmUint16;
44#	else
45	What else can be a 16 bit integer?
46#	endif
47#   endif
48
49#   if SIZEOF_UNSIGNED_INT == 4
50	typedef unsigned int	BmUint32;
51#   else
52#	if SIZEOF_UNSIGNED_LONG == 4
53	typedef unsigned long	BmUint32;
54#	else
55	What else can be a 32 bit integer?
56#	endif
57#   endif
58
59/************************************************/
60/*  Libraries that are (Un)Available.		*/
61/************************************************/
62#   undef	USE_LIBJPEG
63#   undef	USE_LIBTIFF
64#   undef	USE_LIBPNG
65#   undef	USE_LIBXPM
66
67#   endif	/*  BITMAP_CONFIG_H  */
68