-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
129 lines (103 loc) · 1.61 KB
/
config.h
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* config.h */
/*
* For X11R3
*/
#undef X11R3
/*
* For X11R6
*/
#define X11R6
/*
* For System V
*/
#undef USG
/*
* For Solaris
*/
#undef SOLARIS
#undef UcbLibDir
/*
* For slow work station
*/
#undef SLOW_MACHINE
/*
* No cuserid() in library
*/
#undef NO_CUSERID
/*
* Your system has getpwuid() in library
*/
#define HAVE_GETPWUID
/*
* For MH scan users
*/
#undef MHSCAN
/*
* For Shape Extension
*/
#define SHAPE
/*
* Check Environment Variable MAIL for check file
*/
#define GETENV_MAIL
/*
* Set Local Spool pathname
*/
#undef SPOOLPATH
/*
* For X pixmap
*/
#define XPM
#ifdef XPM
#ifdef __FreeBSD__
#undef DepXpmLib
#else
#define DepXpmLib /usr/local/lib/libXpm.a
#endif /* __FreeBSD__ */
#endif /* XPM */
/*
* For using I18N Xaw
*/
#ifndef XI18N
#ifdef __FreeBSD__
#define XI18N
#endif
#endif
#ifdef XI18N
#undef X11R5_Xsi /* define if X11R5 Xsi */
#endif
#ifdef X11R5_Xsi /* When X11R5 Xsi, define followings if you want */
#undef DepXawLib /usr/local/lib/I18N/libXaw.a
#undef DepXwcharLib /usr/local/lib/I18N/libXwchar.a
#undef Xi18nLibDir -L/usr/local/lib/I18N \
-L/usr/local/lib
#undef Xi18nIncDir -I/usr/local/X11/include
#endif
/*
* Convert JIS to Japanese EUC
*/
#define JCONVERT
#undef GUESS_JIS
/*
* Process MIME header, charset=ISO-2022-JP, base 64 encoding
*/
#define ISO_2022_JP
/*
* For SUN Audio
*/
#undef SUN_AUDIO
#undef AudioIncDir
/*
* For BSD Audio (FreeBSD)
*/
#ifndef __alpha
#define BSD_AUDIO
#endif
/*
* For YOUBIN Service
*/
#undef YOUBIN
#ifdef YOUBIN
#define YoubinBinDir %YOUBINBINDIR%
#define YOUBIN_DEFAULT_SERVER_HOST "server"
#endif /* YOUBIN */