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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/* define if you want to remove debugging assertions */
#undef NDEBUG
/* define to the version of the OS, if you have a debian gnu/linux system */
#undef DEBIAN
/* define to the full version of the program, if you have a debian gnu/linux system */
#undef DEBVER
/* define to the full email address of the debian maintainer, if you have a debian gnu/linux system */
#undef DEBMAINT
/* define if you have, and want to use, ndbm interface routines */
#undef NDBM
/* define if you have, and want to use, gdbm interface routines */
#undef GDBM
/* define if you have, and want to use, db (binary tree) interface routines */
#undef BTREE
/* define if you have, and want to use, db (from libc) interface routines */
#undef DB_ON_LIBC
/* define if you have troff */
#undef HAS_TROFF
/* define if you don't have nroff */
#undef NROFF_MISSING
/* define as the setuid owner of man or undefine if not installing setuid */
#undef SECURE_MAN_UID
/* define if you have the setlocale() function */
#undef HAVE_SETLOCALE
/* define if you have the re_comp and re_exec BSD regex routines */
#undef BSD_REGEX
/* define if you have the regcomp and regexec POSIX regex routines */
#undef POSIX_REGEX
/* define if nroff is GNU nroff */
#undef GNU_NROFF
/* define if we are using groff as troff */
#undef TROFF_IS_GROFF
/* define if your sprintf function returns a count of converted characters */
#undef ANSI_SPRINTF
/* define COMP_CAT if you have compressors and want to support compressed
cat files */
#undef COMP_CAT
/* define COMP_SRC if you have compressors and want to support compressed
manual source */
#undef COMP_SRC
/* define if your pclose function doesn't handle multiple streams properly */
#undef BROKEN_PCLOSE
/* define if using <fnmatch.h> rather than "lib/fnmatch.h" */
#undef HAVE_FNMATCH_H
/* define if using <getopt.h> rather than "lib/getopt.h" */
#undef HAVE_GETOPT_H
/* define if using <glob.h> rather than "lib/glob.h" */
#undef HAVE_GLOB_H
/* Define to 1 if NLS is requested. */
#undef ENABLE_NLS
/* Define as 1 if you have catgets and don't want to use GNU gettext. */
#undef HAVE_CATGETS
/* Define as 1 if you have gettext and don't want to use GNU gettext. */
#undef HAVE_GETTEXT
/* Define if your locale.h file contains LC_MESSAGES. */
#undef HAVE_LC_MESSAGES
/* Define to 1 if stpcpy function is available. */
#undef HAVE_STPCPY
/* Define to the name of the distribution. */
#undef PACKAGE
/* Define to the version of the distribution. */
#undef VERSION
|