1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Define if the X Window System is missing or not being used. */
#undef X_DISPLAY_MISSING
/* MIT Shared Memory Extention */
#undef HAVE_MITSHM
/* Define if you have the getopt_long function. */
#undef HAVE_GETOPT_LONG
/* Define if you have the strdup function. */
#undef HAVE_STRDUP
/* Define if you have the strerror function. */
#undef HAVE_STRERROR
/* Define if you have the strsignal function. */
#undef HAVE_STRSIGNAL
/* Define if you have the <dirent.h> header file. */
#undef HAVE_DIRENT_H
/* Define if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define if you have the <ndir.h> header file. */
#undef HAVE_NDIR_H
/* Define if you have the <sys/dir.h> header file. */
#undef HAVE_SYS_DIR_H
/* Define if you have the <sys/ndir.h> header file. */
#undef HAVE_SYS_NDIR_H
/* Define if you have the gimp library (-lgimp). */
#undef HAVE_LIBGIMP
/* Define if you have the jpeg library (-ljpeg). */
#undef HAVE_LIBJPEG
/* Define if you have the tiff library (-ltiff). */
#undef HAVE_LIBTIFF
/* Define if you have the vga library (-lvga). */
#undef HAVE_LIBVGA
/* ------------------------------------------------------------ */
#ifndef HAVE_STRERROR
extern char *sys_errlist[];
#define strerror(x) (sys_errlist[x])
#endif
#ifndef HAVE_STRSIGNAL
extern char *sys_siglist[];
#define strsignal(x) (sys_siglist[x])
#endif
#ifndef HAVE_STRDUP
#define strdup(x) strcpy(malloc(strlen(x)+1),x)
#endif
#if HAVE_DIRENT_H
# include <dirent.h>
#else
# define dirent direct
# if HAVE_SYS_NDIR_H
# include <sys/ndir.h>
# endif
# if HAVE_NDIR_H
# include <ndir.h>
# endif
#endif
|