config.h.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #ifndef BDE_CONFIG_H
  2. #define BDE_CONFIG_H
  3. #undef PACKAGE
  4. #undef VERSION
  5. // enable debugging messages?
  6. #undef DEBUG
  7. #undef HAVE_NCURSESW_NCURSES_H
  8. #undef HAVE_NCURSES_H
  9. // are we using wide-curses?
  10. #undef HAVE_WIDE_CURSES
  11. // do we have nl_langinfo(), CODESET?
  12. #undef HAVE_LANGINFO_CODESET
  13. #undef HAVE_LOCALE_H
  14. #undef HAVE_SETLOCALE
  15. // use GNU's gettext?
  16. #undef USE_GETTEXT
  17. // does our curses support colors?
  18. #undef HAVE_COLOR
  19. // do we have the use_default_colors() non-standard function?
  20. #undef HAVE_USE_DEFAULT_COLORS
  21. // can we change cursor visibility with curs_set()?
  22. #undef HAVE_CURS_SET
  23. // wctob() is for 8-bit locales
  24. #undef HAVE_WCTOB
  25. // btowc() is for 8-bit locales
  26. #undef HAVE_BTOWC
  27. // can we parse long command-line arguments?
  28. #undef HAVE_GETOPT_LONG
  29. // use iconv for charset conversion?
  30. #undef USE_ICONV
  31. // iconv()'s declaration has "const" for the second argument?
  32. #undef ICONV_CONST
  33. // what is iconv's name of our internal encoding?
  34. #undef INTERNAL_ENCODING
  35. // default file encoding
  36. #undef DEFAULT_FILE_ENCODING
  37. // DIR and dirent
  38. #undef HAVE_DIRENT_H
  39. #undef HAVE_SYS_NDIR_H
  40. #undef HAVE_SYS_DIR_H
  41. #undef HAVE_NDIR_H
  42. #undef mode_t
  43. #undef RETSIGTYPE
  44. #undef HAVE_VSNPRINTF
  45. #undef HAVE_VASPRINTF
  46. #endif