ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/ptytty.m4
Revision: 1.11
Committed: Mon Nov 5 00:50:05 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_9, rel-8_5a, rel-8_8, rel-9_0, rel-8_6, rel-8_7, rel-9_02, rel-9_01
Changes since 1.10: +4 -7 lines
Log Message:
libptytty sync

File Contents

# User Rev Content
1 root 1.2 dnl this file is part of libptytty, do not make local modifications
2     dnl http://software.schmorp.de/pkg/libptytty
3    
4 root 1.1 AC_DEFUN([PTY_CHECK],
5     [
6     AC_CHECK_HEADERS( \
7     pty.h \
8     util.h \
9     libutil.h \
10     sys/ioctl.h \
11     sys/stropts.h \
12     )
13    
14     AC_CHECK_FUNCS( \
15     revoke \
16     _getpty \
17     getpt \
18     posix_openpt \
19     isastream \
20 root 1.7 setuid \
21     seteuid \
22     setreuid \
23     setresuid \
24 root 1.1 )
25    
26     have_clone=no
27    
28     AC_MSG_CHECKING(for /dev/ptym/clone)
29     if test -e /dev/ptym/clone; then
30     AC_MSG_RESULT(yes)
31     AC_DEFINE(HAVE_DEV_CLONE, 1, [Define to 1 if you have /dev/ptym/clone])
32     AC_DEFINE(CLONE_DEVICE, "/dev/ptym/clone", [clone device filename])
33     have_clone=yes
34     else
35     AC_MSG_RESULT(no)
36     fi
37    
38     AC_MSG_CHECKING(for /dev/ptc)
39     if test -e /dev/ptc; then
40     AC_MSG_RESULT(yes)
41     AC_DEFINE(HAVE_DEV_PTC, 1, [Define to 1 if you have /dev/ptc])
42     AC_DEFINE(CLONE_DEVICE, "/dev/ptc", [clone device filename])
43     have_clone=yes
44     else
45     AC_MSG_RESULT(no)
46     fi
47    
48     case $host in
49     *-*-cygwin*)
50     have_clone=yes
51     AC_DEFINE(CLONE_DEVICE, "/dev/ptmx", [clone device filename])
52     ;;
53     *)
54     AC_MSG_CHECKING(for /dev/ptmx)
55     if test -e /dev/ptmx; then
56     AC_MSG_RESULT(yes)
57     AC_DEFINE(HAVE_DEV_PTMX, 1, [Define to 1 if you have /dev/ptmx])
58     AC_DEFINE(CLONE_DEVICE, "/dev/ptmx", [clone device filename])
59     have_clone=yes
60     else
61     AC_MSG_RESULT(no)
62     fi
63     ;;
64     esac
65    
66     if test x$ac_cv_func_getpt = xyes -o x$ac_cv_func_posix_openpt = xyes -o x$have_clone = xyes; then
67     AC_MSG_CHECKING(for UNIX98 ptys)
68     AC_TRY_LINK([#include <stdlib.h>],
69     [grantpt(0);unlockpt(0);ptsname(0);],
70     [unix98_pty=yes
71     AC_DEFINE(UNIX98_PTY, 1, "")
72     AC_MSG_RESULT(yes)],
73     [AC_MSG_RESULT(no)])
74     fi
75    
76     if test -z "$unix98_pty"; then
77     AC_CHECK_FUNCS(openpty, [], [AC_CHECK_LIB(util, openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"])])
78     fi
79     ])
80    
81     AC_DEFUN([UTMP_CHECK],
82     [
83 ayin 1.5 support_utmp=yes
84     support_wtmp=yes
85     support_lastlog=yes
86    
87 ayin 1.4 AC_ARG_ENABLE(utmp,
88 ayin 1.11 [AS_HELP_STRING([--enable-utmp],[enable utmp (utmpx) support])],
89 ayin 1.4 [if test x$enableval = xyes -o x$enableval = xno; then
90     support_utmp=$enableval
91     fi])
92    
93     AC_ARG_ENABLE(wtmp,
94 ayin 1.11 [AS_HELP_STRING([--enable-wtmp],[enable wtmp (wtmpx) support (requires --enable-utmp)])],
95 ayin 1.4 [if test x$enableval = xyes -o x$enableval = xno; then
96     support_wtmp=$enableval
97     fi])
98    
99     AC_ARG_ENABLE(lastlog,
100 ayin 1.11 [AS_HELP_STRING([--enable-lastlog],[enable lastlog support (requires --enable-utmp)])],
101 ayin 1.4 [if test x$enableval = xyes -o x$enableval = xno; then
102     support_lastlog=$enableval
103     fi])
104    
105     if test x$support_utmp = xyes; then
106     AC_DEFINE(UTMP_SUPPORT, 1, Define if you want to have utmp/utmpx support)
107     fi
108     if test x$support_wtmp = xyes; then
109     AC_DEFINE(WTMP_SUPPORT, 1, Define if you want to have wtmp support when utmp/utmpx is enabled)
110     fi
111     if test x$support_lastlog = xyes; then
112     AC_DEFINE(LASTLOG_SUPPORT, 1, Define if you want to have lastlog support when utmp/utmpx is enabled)
113     fi
114    
115 root 1.1 AC_CHECK_FUNCS( \
116     updwtmp \
117     updwtmpx \
118 ayin 1.11 updlastlogx \
119 root 1.1 )
120    
121     AC_CHECK_HEADERS( \
122     utmp.h \
123     utmpx.h \
124     lastlog.h \
125     )
126    
127     dnl# --------------------------------------------------------------------------
128     dnl# DO ALL UTMP AND WTMP CHECKING
129     dnl# --------------------------------------------------------------------------
130     dnl# check for host field in utmp structure
131    
132     dnl# --------------------------------------------
133     AC_CHECK_HEADER(utmp.h,
134     [AC_CACHE_CHECK([for struct utmp], struct_utmp,
135     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
136     #include <utmp.h>]], [[struct utmp ut;]])],[struct_utmp=yes],[struct_utmp=no])])
137     if test x$struct_utmp = xyes; then
138     AC_DEFINE(HAVE_STRUCT_UTMP, 1, Define if utmp.h has struct utmp)
139     fi
140     ]
141    
142     AC_CACHE_CHECK(for ut_host in utmp struct, struct_utmp_host,
143     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
144     #include <utmp.h>]], [[struct utmp ut; ut.ut_host;]])],[struct_utmp_host=yes],[struct_utmp_host=no])])
145     if test x$struct_utmp_host = xyes; then
146     AC_DEFINE(HAVE_UTMP_HOST, 1, Define if struct utmp contains ut_host)
147     fi
148    
149     AC_CACHE_CHECK(for ut_pid in utmp struct, struct_utmp_pid,
150     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
151     #include <utmp.h>]], [[struct utmp ut; ut.ut_pid;]])],[struct_utmp_pid=yes],[struct_utmp_pid=no])])
152     if test x$struct_utmp_pid = xyes; then
153     AC_DEFINE(HAVE_UTMP_PID, 1, Define if struct utmp contains ut_pid)
154     fi
155     ) dnl# AC_CHECK_HEADER(utmp.h
156    
157     dnl# --------------------------------------------
158    
159     AC_CHECK_HEADER(utmpx.h,
160     [AC_CACHE_CHECK([for struct utmpx], struct_utmpx,
161     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
162     #include <utmpx.h>]], [[struct utmpx ut;]])],[struct_utmpx=yes],[struct_utmpx=no])])
163     if test x$struct_utmpx = xyes; then
164     AC_DEFINE(HAVE_STRUCT_UTMPX, 1, Define if utmpx.h has struct utmpx)
165     fi
166     ]
167    
168     AC_CACHE_CHECK(for host in utmpx struct, struct_utmpx_host,
169     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
170     #include <utmpx.h>]], [[struct utmpx utx; utx.ut_host;]])],[struct_utmpx_host=yes],[struct_utmpx_host=no])])
171     if test x$struct_utmpx_host = xyes; then
172     AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)
173     fi
174    
175     AC_CACHE_CHECK(for session in utmpx struct, struct_utmpx_session,
176     [AC_TRY_COMPILE([#include <sys/types.h>
177     #include <utmpx.h>],
178     [struct utmpx utx; utx.ut_session;],
179     struct_utmpx_session=yes, struct_utmpx_session=no)])
180     if test x$struct_utmpx_session = xyes; then
181     AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session)
182     fi
183     ) dnl# AC_CHECK_HEADER(utmpx.h
184    
185     dnl# --------------------------------------------------------------------------
186     dnl# check for struct lastlog
187     AC_CACHE_CHECK(for struct lastlog, struct_lastlog,
188     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
189     #include <utmp.h>
190     #ifdef HAVE_LASTLOG_H
191     #include <lastlog.h>
192     #endif
193     ]], [[struct lastlog ll;]])],[struct_lastlog=yes],[struct_lastlog=no])])
194     if test x$struct_lastlog = xyes; then
195     AC_DEFINE(HAVE_STRUCT_LASTLOG, 1, Define if utmp.h or lastlog.h has struct lastlog)
196     fi
197    
198     dnl# check for struct lastlogx
199     AC_CACHE_CHECK(for struct lastlogx, struct_lastlogx,
200     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
201     #include <utmpx.h>
202     #ifdef HAVE_LASTLOG_H
203     #include <lastlog.h>
204     #endif
205     ]], [[struct lastlogx ll;]])],[struct_lastlogx=yes],[struct_lastlogx=no])])
206     if test x$struct_lastlogx = xyes; then
207     AC_DEFINE(HAVE_STRUCT_LASTLOGX, 1, Define if utmpx.h or lastlog.h has struct lastlogx)
208     fi
209    
210     dnl# --------------------------------------------------------------------------
211     dnl# FIND FILES
212     dnl# --------------------------------------------------------------------------
213    
214     dnl# find utmp
215     AC_CACHE_CHECK(where utmp is located, path_utmp,
216     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
217 ayin 1.9 #include <stdlib.h>
218 root 1.1 #include <sys/types.h>
219     #include <utmp.h>
220     #include <errno.h>
221     main()
222     {
223     char **u, *utmplist[] = {
224     "/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp", NULL };
225     FILE *a, *f=fopen("conftestval", "w");
226     if (!f) exit(1);
227     #ifdef UTMP_FILE
228     fprintf(f, "%s\n", UTMP_FILE);
229     exit(0);
230     #endif
231     #ifdef _PATH_UTMP
232     fprintf(f, "%s\n", _PATH_UTMP);
233     exit(0);
234     #endif
235     for (u = utmplist; *u; u++) {
236     if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
237     fprintf(f, "%s\n", *u);
238     exit(0);
239     }
240     }
241     exit(0);
242     }]])],[path_utmp=`cat conftestval`],[path_utmp=],[dnl
243     AC_MSG_WARN(Define UTMP_FILE in config.h manually)])])
244     if test x$path_utmp != x; then
245     AC_DEFINE_UNQUOTED(UTMP_FILE, "$path_utmp", Define location of utmp)
246     fi
247    
248     dnl# --------------------------------------------------------------------------
249    
250     dnl# find utmpx - if a utmp file exists at the same location and is more than
251     dnl# a day newer, then dump the utmpx. People leave lots of junk around.
252     AC_CACHE_CHECK(where utmpx is located, path_utmpx,
253     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
254 ayin 1.9 #include <stdlib.h>
255 root 1.1 #include <sys/types.h>
256     #include <utmpx.h>
257     #include <errno.h>
258     #include <sys/stat.h>
259     #ifdef HAVE_STRING_H
260     #include <string.h>
261     #endif
262     main()
263     {
264     char **u, *p, *utmplist[] = {
265     #ifdef UTMPX_FILE
266     UTMPX_FILE,
267     #endif
268     #ifdef _PATH_UTMPX
269     _PATH_UTMPX,
270     #endif
271     "/var/adm/utmpx", "/etc/utmpx", NULL };
272     FILE *a, *f=fopen("conftestval", "w");
273     struct stat statu, statux;
274     if (!f) exit(1);
275     for (u = utmplist; *u; u++) {
276     if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
277     if (stat(*u, &statux) < 0)
278     continue;
279     p = strdup(*u);
280     p[strlen(p) - 1] = '\0';
281     if (stat(p, &statu) >= 0
282     && (statu.st_mtime - statux.st_mtime > 86400))
283     continue;
284     fprintf(f, "%s\n", *u);
285     exit(0);
286     }
287     }
288     exit(0);
289     }]])],[path_utmpx=`cat conftestval`],[path_utmpx=],[dnl
290     AC_MSG_WARN(Define UTMPX_FILE in config.h manually)])])
291     if test x$path_utmpx != x; then
292     AC_DEFINE_UNQUOTED(UTMPX_FILE, "$path_utmpx", Define location of utmpx)
293     fi
294    
295     dnl# --------------------------------------------------------------------------
296    
297     dnl# find wtmp
298     AC_CACHE_CHECK(where wtmp is located, path_wtmp,
299     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
300 ayin 1.9 #include <stdlib.h>
301 root 1.1 #include <sys/types.h>
302     #ifdef HAVE_UTMP_H
303     #include <utmp.h>
304     #endif
305     #include <errno.h>
306     main()
307     {
308     char **w, *wtmplist[] = {
309 root 1.10 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL };
310 root 1.1 FILE *a, *f=fopen("conftestval", "w");
311     if (!f) exit(1);
312     #ifdef WTMP_FILE
313     fprintf(f, "%s\n", WTMP_FILE);
314     exit(0);
315     #endif
316     #ifdef _PATH_WTMP
317     fprintf(f, "%s\n", _PATH_WTMP);
318     exit(0);
319     #endif
320     for (w = wtmplist; *w; w++) {
321     if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
322     fprintf(f, "%s\n", *w);
323     exit(0);
324     }
325     }
326     exit(0);
327     }]])],[path_wtmp=`cat conftestval`],[path_wtmp=],[dnl
328     AC_MSG_WARN(Define WTMP_FILE in config.h manually)])])
329     if test x$path_wtmp != x; then
330     AC_DEFINE_UNQUOTED(WTMP_FILE, "$path_wtmp", Define location of wtmp)
331     fi
332     dnl# --------------------------------------------------------------------------
333    
334     dnl# find wtmpx
335     AC_CACHE_CHECK(where wtmpx is located, path_wtmpx,
336     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
337 ayin 1.9 #include <stdlib.h>
338 root 1.1 #ifdef HAVE_UTMPX_H
339     #include <utmpx.h>
340     #endif
341     #include <errno.h>
342     main()
343     {
344     char **w, *wtmplist[] = {
345 root 1.10 "/var/log/wtmpx", "/var/adm/wtmpx", NULL };
346 root 1.1 FILE *a, *f=fopen("conftestval", "w");
347     if (!f) exit(1);
348     #ifdef WTMPX_FILE
349     fprintf(f, "%s\n", WTMPX_FILE);
350     exit(0);
351     #endif
352     #ifdef _PATH_WTMPX
353     fprintf(f, "%s\n", _PATH_WTMPX);
354     exit(0);
355     #endif
356     for (w = wtmplist; *w; w++) {
357     if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
358     fprintf(f, "%s\n", *w);
359     exit(0);
360     }
361     }
362     exit(0);
363     }]])],[path_wtmpx=`cat conftestval`],[path_wtmpx=],[dnl
364     AC_MSG_WARN(Define WTMPX_FILE in config.h manually)])])
365     if test x$path_wtmpx != x; then
366     AC_DEFINE_UNQUOTED(WTMPX_FILE, "$path_wtmpx", Define location of wtmpx)
367     fi
368     dnl# --------------------------------------------------------------------------
369    
370     dnl# find lastlog
371     AC_CACHE_CHECK(where lastlog is located, path_lastlog,
372     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
373 ayin 1.9 #include <stdlib.h>
374 root 1.1 #include <sys/types.h>
375     #ifdef HAVE_UTMPX_H
376     #include <utmpx.h>
377     #elif defined(HAVE_UTMP_H)
378     #include <utmp.h>
379     #endif
380     #ifdef HAVE_LASTLOG_H
381     #include <lastlog.h>
382     #endif
383     #include <errno.h>
384     main()
385     {
386     char **w, *lastloglist[] = { "/var/log/lastlog", NULL };
387     FILE *a, *f=fopen("conftestval", "w");
388     if (!f) exit(1);
389     #ifdef LASTLOG_FILE
390     fprintf(f, "%s\n", LASTLOG_FILE);
391     exit(0);
392     #endif
393     #ifdef _PATH_LASTLOG
394     fprintf(f, "%s\n", _PATH_LASTLOG);
395     exit(0);
396     #endif
397     for (w = lastloglist; *w; w++) {
398     if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
399     fprintf(f, "%s\n", *w);
400     exit(0);
401     }
402     }
403     exit(0);
404     }]])],[path_lastlog=`cat conftestval`],[path_lastlog=],[dnl
405     AC_MSG_WARN(Define LASTLOG_FILE in config.h manually)])])
406     if test x$path_lastlog != x; then
407     AC_DEFINE_UNQUOTED(LASTLOG_FILE, "$path_lastlog", Define location of lastlog)
408     fi
409     dnl# --------------------------------------------------------------------------
410    
411     dnl# find lastlogx
412     AC_CACHE_CHECK(where lastlogx is located, path_lastlogx,
413     [AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
414 ayin 1.9 #include <stdlib.h>
415 root 1.1 #ifdef HAVE_UTMPX_H
416     #include <utmpx.h>
417     #endif
418     #include <errno.h>
419     main()
420     {
421     char **w, *wtmplist[] = { "/var/log/lastlogx", "/var/adm/lastlogx", NULL };
422     FILE *a, *f=fopen("conftestval", "w");
423     if (!f) exit(1);
424     #ifdef LASTLOGX_FILE
425     fprintf(f, "%s\n", LASTLOGX_FILE);
426     exit(0);
427     #endif
428     #ifdef _PATH_LASTLOGX
429     fprintf(f, "%s\n", _PATH_LASTLOGX);
430     exit(0);
431     #endif
432     for (w = wtmplist; *w; w++) {
433     if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
434     fprintf(f, "%s\n", *w);
435     exit(0);
436     }
437     }
438     exit(0);
439     }]])],[path_lastlogx=`cat conftestval`],[path_lastlogx=],[dnl
440     AC_MSG_WARN(Define LASTLOGX_FILE in config.h manually)])])
441     if test x$path_lastlogx != x; then
442     AC_DEFINE_UNQUOTED(LASTLOGX_FILE, "$path_lastlogx", Define location of lastlogx)
443     fi
444     ])
445    
446     AC_DEFUN([SCM_RIGHTS_CHECK],
447     [
448     AC_CACHE_CHECK(for unix-compliant filehandle passing ability, can_pass_fds,
449     [AC_TRY_LINK([
450 root 1.6 #include <cstddef> // broken bsds (is that redundant?) need this
451 root 1.1 #include <sys/types.h>
452     #include <sys/socket.h>
453     #include <sys/uio.h>
454     ],[
455     {
456     msghdr msg;
457     iovec iov;
458     char buf [100];
459     char data = 0;
460    
461     iov.iov_base = &data;
462     iov.iov_len = 1;
463    
464     msg.msg_iov = &iov;
465     msg.msg_iovlen = 1;
466     msg.msg_control = buf;
467     msg.msg_controllen = sizeof buf;
468    
469     cmsghdr *cmsg = CMSG_FIRSTHDR (&msg);
470     cmsg->cmsg_level = SOL_SOCKET;
471     cmsg->cmsg_type = SCM_RIGHTS;
472     cmsg->cmsg_len = 100;
473    
474     *(int *)CMSG_DATA (cmsg) = 5;
475    
476     return sendmsg (3, &msg, 0);
477     }
478     ],[can_pass_fds=yes],[can_pass_fds=no])])
479     if test x$can_pass_fds = xyes; then
480     AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing)
481     else
482     AC_MSG_ERROR([libptytty requires unix-compliant filehandle passing ability])
483     fi
484     ])
485 ayin 1.3
486     AC_DEFUN([TTY_GROUP_CHECK],
487     [
488     AC_CACHE_CHECK([for tty group], tty_group,
489     [AC_TRY_RUN([
490     #include <sys/types.h>
491     #include <sys/stat.h>
492     #include <unistd.h>
493     #include <grp.h>
494    
495     main()
496     {
497     struct stat st;
498     struct group *gr;
499     char *tty;
500     gr = getgrnam("tty");
501     tty = ttyname(0);
502     if (gr != 0
503     && tty != 0
504     && (stat(tty, &st)) == 0
505     && st.st_gid == gr->gr_gid)
506     return 0;
507     else
508     return 1;
509     }],
510     [tty_group=yes],[tty_group=no],[tty_group=no])])
511     if test x$tty_group = xyes; then
512     AC_DEFINE(TTY_GID_SUPPORT, 1, "")
513     fi])
514