Develop and Download Open Source Software

Browse CVS Repository

Annotation of /freewnn/FreeWnn/config.h.in

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.27 - (hide annotations) (download)
Mon Sep 25 17:31:35 2006 UTC (17 years, 6 months ago) by aonoto
Branch: MAIN
Changes since 1.26: +3 -0 lines
Use posix_openpt() (if it and ptsname() exists) when opening tty.
Traditional pts system (that doesn't have posix_openpt()) fallback to
dummy function opening /dev/ptmx directly. Getting tty without setting
setuid root works in non-pts systems that have posix-compatible
pty functions (ex. recent FreeBSD).

Other changes to configure.in:
- Remove (already commented out) default case in system specific part.
- Commented out useless AC_DEFINE in term library detection part.

1 hiroo 1.12 /* config.h.in. Generated from configure.in by autoheader. */
2 hiroo 1.14
3 hiroo 1.20 /* Define to 1 if the `getpgrp' function requires zero arguments. */
4     #undef GETPGRP_VOID
5    
6 hiroo 1.13 /* Define to 1 if you have the `bcmp' function. */
7     #undef HAVE_BCMP
8    
9     /* Define to 1 if you have the `bcopy' function. */
10     #undef HAVE_BCOPY
11    
12     /* Define to 1 if you have the `bzero' function. */
13     #undef HAVE_BZERO
14    
15 hiroo 1.12 /* Define to 1 if you have the `closesocket' function. */
16 ura 1.6 #undef HAVE_CLOSESOCKET
17    
18 hiroo 1.14 /* Define to 1 if you have the <curses.h> header file. */
19     #undef HAVE_CURSES_H
20    
21 hiroo 1.12 /* Define to 1 if you have the <dlfcn.h> header file. */
22     #undef HAVE_DLFCN_H
23    
24     /* Define to 1 if you have the `drand48' function. */
25 ura 1.2 #undef HAVE_DRAND48
26    
27 hiroo 1.12 /* Define to 1 if you have the `fchmod' function. */
28 hiroo 1.10 #undef HAVE_FCHMOD
29    
30 hiroo 1.12 /* Define to 1 if you have the <fcntl.h> header file. */
31     #undef HAVE_FCNTL_H
32 hiroo 1.18
33     /* Define to 1 if you have the `FD_SET' function. */
34     #undef HAVE_FD_SET
35 hiroo 1.15
36     /* Define to 1 if you have the `getdtablesize' function. */
37     #undef HAVE_GETDTABLESIZE
38 hiroo 1.12
39     /* Define to 1 if you have the `gethostname' function. */
40 ura 1.6 #undef HAVE_GETHOSTNAME
41    
42 hiroo 1.16 /* Define to 1 if you have the `getopt' function. */
43     #undef HAVE_GETOPT
44    
45 hiroo 1.20 /* Define to 1 if you have the `getpgid' function. */
46     #undef HAVE_GETPGID
47    
48     /* Define to 1 if you have the `getpgrp' function. */
49     #undef HAVE_GETPGRP
50    
51 hiroo 1.14 /* Define to 1 if you have the `getrlimit' function. */
52     #undef HAVE_GETRLIMIT
53    
54     /* Define to 1 if you have the `index' function. */
55     #undef HAVE_INDEX
56    
57 hiroo 1.12 /* Define to 1 if you have the <inttypes.h> header file. */
58     #undef HAVE_INTTYPES_H
59    
60 hiroo 1.20 /* Define to 1 if you have the `killpg' function. */
61     #undef HAVE_KILLPG
62    
63 hiroo 1.14 /* Define to 1 if you have the `bind' library (-lbind). */
64     #undef HAVE_LIBBIND
65    
66 hiroo 1.12 /* Define to 1 if you have the `nsl' library (-lnsl). */
67     #undef HAVE_LIBNSL
68    
69     /* Define to 1 if you have the `socket' library (-lsocket). */
70     #undef HAVE_LIBSOCKET
71    
72 aonoto 1.23 /* Define to 1 if you have the `util' library (-lutil). */
73     #undef HAVE_LIBUTIL
74    
75     /* Define to 1 if you have the <libutil.h> header file. */
76     #undef HAVE_LIBUTIL_H
77    
78 aono 1.21 /* Define if you have libwrap (TCP wrapper) support. */
79 hiroo 1.20 #undef HAVE_LIBWRAP
80    
81 hiroo 1.12 /* Define to 1 if you have the <malloc.h> header file. */
82     #undef HAVE_MALLOC_H
83    
84 hiroo 1.14 /* Define to 1 if you have the `memcpy' function. */
85     #undef HAVE_MEMCPY
86    
87     /* Define to 1 if you have the `memmove' function. */
88     #undef HAVE_MEMMOVE
89    
90 hiroo 1.12 /* Define to 1 if you have the <memory.h> header file. */
91     #undef HAVE_MEMORY_H
92    
93 hiroo 1.14 /* Define to 1 if you have the `memset' function. */
94     #undef HAVE_MEMSET
95    
96 hiroo 1.12 /* Define to 1 if you have the `mkdir' function. */
97 ura 1.6 #undef HAVE_MKDIR
98 ura 1.3
99 hiroo 1.14 /* Define to 1 if you have the <ncurses.h> header file. */
100     #undef HAVE_NCURSES_H
101 hiroo 1.17
102 aonoto 1.23 /* Define to 1 if you have the `openpty' function. */
103     #undef HAVE_OPENPTY
104    
105 aonoto 1.27 /* Define to 1 if you have the `posix_openpt' function. */
106     #undef HAVE_POSIX_OPENPT
107    
108 aonoto 1.23 /* Define to 1 if you have the `ptsname' function. */
109     #undef HAVE_PTSNAME
110    
111 aonoto 1.24 /* Define to 1 if you have the `pututline' function. */
112     #undef HAVE_PUTUTLINE
113    
114     /* Define to 1 if you have the `pututxline' function. */
115     #undef HAVE_PUTUTXLINE
116    
117 hiroo 1.17 /* Define to 1 if you have the `random' function. */
118     #undef HAVE_RANDOM
119 ura 1.5
120 hiroo 1.12 /* Define to 1 if you have the `recv' function. */
121 ura 1.6 #undef HAVE_RECV
122    
123 hiroo 1.14 /* Define to 1 if you have the `rindex' function. */
124     #undef HAVE_RINDEX
125    
126 hiroo 1.12 /* Define to 1 if you have the `select' function. */
127 ura 1.6 #undef HAVE_SELECT
128    
129 hiroo 1.12 /* Define to 1 if you have the `send' function. */
130 ura 1.6 #undef HAVE_SEND
131    
132 hiroo 1.12 /* Define to 1 if you have the `setenv' function. */
133     #undef HAVE_SETENV
134    
135 hiroo 1.14 /* Define to 1 if you have the `setpgrp' function. */
136     #undef HAVE_SETPGRP
137    
138 aonoto 1.26 /* Define to 1 if you have the `setsid' function. */
139     #undef HAVE_SETSID
140    
141 hiroo 1.12 /* Define to 1 if you have the `setsockopt' function. */
142 ura 1.5 #undef HAVE_SETSOCKOPT
143 ura 1.6
144 hiroo 1.12 /* Define to 1 if you have the <sgtty.h> header file. */
145     #undef HAVE_SGTTY_H
146    
147 hiroo 1.14 /* Define to 1 if you have the `snprintf' function. */
148     #undef HAVE_SNPRINTF
149    
150 hiroo 1.12 /* Define to 1 if you have the `socket' function. */
151 ura 1.6 #undef HAVE_SOCKET
152 hiroo 1.14
153 hiroo 1.19 /* Define to 1 if the system has the type `socklen_t'. */
154     #undef HAVE_SOCKLEN_T
155    
156 hiroo 1.12 /* Define to 1 if you have the <stdint.h> header file. */
157     #undef HAVE_STDINT_H
158 ura 1.6
159 hiroo 1.12 /* Define to 1 if you have the <stdlib.h> header file. */
160     #undef HAVE_STDLIB_H
161 aono 1.9
162 hiroo 1.14 /* Define to 1 if you have the `strchr' function. */
163     #undef HAVE_STRCHR
164    
165 hiroo 1.12 /* Define to 1 if you have the <strings.h> header file. */
166     #undef HAVE_STRINGS_H
167 aono 1.9
168 hiroo 1.12 /* Define to 1 if you have the <string.h> header file. */
169     #undef HAVE_STRING_H
170 hiroo 1.7
171 hiroo 1.14 /* Define to 1 if you have the `strrchr' function. */
172     #undef HAVE_STRRCHR
173 ura 1.6
174 aonoto 1.25 /* Define to 1 if `ut_id' is member of `struct utmp'. */
175     #undef HAVE_STRUCT_UTMP_UT_ID
176    
177 aonoto 1.24 /* Define to 1 if `ut_name' is member of `struct utmp'. */
178     #undef HAVE_STRUCT_UTMP_UT_NAME
179    
180     /* Define to 1 if `ut_user' is member of `struct utmp'. */
181     #undef HAVE_STRUCT_UTMP_UT_USER
182    
183 hiroo 1.12 /* Define to 1 if you have the `syslog' function. */
184     #undef HAVE_SYSLOG
185 hiroo 1.11
186 hiroo 1.12 /* Define to 1 if you have the <syslog.h> header file. */
187     #undef HAVE_SYSLOG_H
188 ura 1.6
189 hiroo 1.12 /* Define to 1 if you have the <sys/file.h> header file. */
190 ura 1.6 #undef HAVE_SYS_FILE_H
191    
192 hiroo 1.12 /* Define to 1 if you have the <sys/ioctl.h> header file. */
193 ura 1.6 #undef HAVE_SYS_IOCTL_H
194    
195 hiroo 1.12 /* Define to 1 if you have the <sys/param.h> header file. */
196 ura 1.6 #undef HAVE_SYS_PARAM_H
197    
198 hiroo 1.12 /* Define to 1 if you have the <sys/stat.h> header file. */
199     #undef HAVE_SYS_STAT_H
200    
201 aonoto 1.23 /* Define to 1 if you have the <sys/termio.h> header file. */
202     #undef HAVE_SYS_TERMIO_H
203    
204 hiroo 1.12 /* Define to 1 if you have the <sys/time.h> header file. */
205 ura 1.6 #undef HAVE_SYS_TIME_H
206    
207 hiroo 1.12 /* Define to 1 if you have the <sys/types.h> header file. */
208 ura 1.6 #undef HAVE_SYS_TYPES_H
209    
210 hiroo 1.12 /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
211     #undef HAVE_SYS_WAIT_H
212    
213 aonoto 1.23 /* Define to 1 if you have the <termcap.h> header file. */
214     #undef HAVE_TERMCAP_H
215    
216     /* terminfo spoken here */
217     #undef HAVE_TERMINFO
218    
219 hiroo 1.20 /* Define to 1 if you have the <termios.h> header file. */
220     #undef HAVE_TERMIOS_H
221    
222 hiroo 1.12 /* Define to 1 if you have the <termio.h> header file. */
223 ura 1.6 #undef HAVE_TERMIO_H
224    
225 hiroo 1.14 /* Define to 1 if you have the <term.h> header file. */
226     #undef HAVE_TERM_H
227    
228 hiroo 1.12 /* Define to 1 if you have the <unistd.h> header file. */
229 ura 1.6 #undef HAVE_UNISTD_H
230    
231 hiroo 1.20 /* Define to 1 if you have the <utmpx.h> header file. */
232     #undef HAVE_UTMPX_H
233    
234     /* Define to 1 if you have the <utmp.h> header file. */
235     #undef HAVE_UTMP_H
236    
237 hiroo 1.12 /* Define to 1 if you have the `vasprintf' function. */
238     #undef HAVE_VASPRINTF
239    
240     /* Define to 1 if you have the `vsyslog' function. */
241     #undef HAVE_VSYSLOG
242    
243 hiroo 1.14 /* Define to 1 if you have the `wait3' function. */
244 hiroo 1.12 #undef HAVE_WAIT3
245    
246 aonoto 1.23 /* Define to 1 if you have the file `AC_File'. */
247     #undef HAVE__DEV_PTMX
248    
249 hiroo 1.12 /* Define to the address where bug reports for this package should be sent. */
250     #undef PACKAGE_BUGREPORT
251    
252     /* Define to the full name of this package. */
253     #undef PACKAGE_NAME
254    
255     /* Define to the full name and version of this package. */
256     #undef PACKAGE_STRING
257    
258     /* Define to the one symbol short name of this package. */
259     #undef PACKAGE_TARNAME
260    
261     /* Define to the version of this package. */
262     #undef PACKAGE_VERSION
263    
264     /* Define as the return type of signal handlers (`int' or `void'). */
265     #undef RETSIGTYPE
266 hiroo 1.14
267     /* Define if the signal function returns void. */
268     #undef RETSIGTYPE_VOID
269 hiroo 1.12
270     /* Define to 1 if the `setpgrp' function takes no argument. */
271     #undef SETPGRP_VOID
272    
273     /* Define to 1 if you have the ANSI C header files. */
274     #undef STDC_HEADERS
275    
276     /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
277     #undef TIME_WITH_SYS_TIME
278 ura 1.6
279 aonoto 1.24 /* Define to 1 if uum writes utmp entry */
280     #undef USE_UTMP
281    
282 hiroo 1.19 /* Define to allow writing to other than JSERVERDIR. */
283     #undef WNN_ALLOW_UNSAFE_PATH
284    
285 hiroo 1.12 /* Define to `int' if <sys/types.h> does not define. */
286     #undef mode_t
287 ura 1.6
288 hiroo 1.19 /* Define missing socklen_t. */
289     #undef socklen_t

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26