summaryrefslogtreecommitdiff
path: root/config.h.in
blob: 1bd4752930568f6d48422a51f489796ae30dcbcc (plain)
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
#ifndef BDE_CONFIG_H
#define BDE_CONFIG_H

#undef PACKAGE
#undef VERSION

// enable debugging messages?
#undef DEBUG

#undef HAVE_NCURSESW_NCURSES_H

#undef HAVE_NCURSES_H

// are we using wide-curses?
#undef HAVE_WIDE_CURSES

// do we have nl_langinfo(), CODESET?
#undef HAVE_LANGINFO_CODESET

#undef HAVE_LOCALE_H

#undef HAVE_SETLOCALE

// use GNU's gettext?
#undef USE_GETTEXT

// does our curses support colors?
#undef HAVE_COLOR

// do we have the use_default_colors() non-standard function?
#undef HAVE_USE_DEFAULT_COLORS

// can we change cursor visibility with curs_set()?
#undef HAVE_CURS_SET

// wctob() is for 8-bit locales
#undef HAVE_WCTOB

// btowc() is for 8-bit locales
#undef HAVE_BTOWC

// can we parse long command-line arguments?
#undef HAVE_GETOPT_LONG

// use iconv for charset conversion?
#undef USE_ICONV

// iconv()'s declaration has "const" for the second argument?
#undef ICONV_CONST

// what is iconv's name of our internal encoding?
#undef INTERNAL_ENCODING

// default file encoding
#undef DEFAULT_FILE_ENCODING

// DIR and dirent
#undef HAVE_DIRENT_H

#undef HAVE_SYS_NDIR_H

#undef HAVE_SYS_DIR_H

#undef HAVE_NDIR_H

#undef mode_t

#undef RETSIGTYPE

#undef HAVE_VSNPRINTF

#undef HAVE_VASPRINTF

#endif