ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/ptytty.m4
(Generate patch)

Comparing rxvt-unicode/ptytty.m4 (file contents):
Revision 1.1 by root, Sun Jan 22 00:48:13 2006 UTC vs.
Revision 1.11 by ayin, Mon Nov 5 00:50:05 2007 UTC

1dnl this file is part of libptytty, do not make local modifications
2dnl http://software.schmorp.de/pkg/libptytty
3
1AC_DEFUN([PTY_CHECK], 4AC_DEFUN([PTY_CHECK],
2[ 5[
3AC_CHECK_HEADERS( \ 6AC_CHECK_HEADERS( \
4 pty.h \ 7 pty.h \
5 util.h \ 8 util.h \
12 revoke \ 15 revoke \
13 _getpty \ 16 _getpty \
14 getpt \ 17 getpt \
15 posix_openpt \ 18 posix_openpt \
16 isastream \ 19 isastream \
20 setuid \
21 seteuid \
22 setreuid \
23 setresuid \
17) 24)
18 25
19have_clone=no 26have_clone=no
20 27
21AC_MSG_CHECKING(for /dev/ptym/clone) 28AC_MSG_CHECKING(for /dev/ptym/clone)
71fi 78fi
72]) 79])
73 80
74AC_DEFUN([UTMP_CHECK], 81AC_DEFUN([UTMP_CHECK],
75[ 82[
83support_utmp=yes
84support_wtmp=yes
85support_lastlog=yes
86
87AC_ARG_ENABLE(utmp,
88 [AS_HELP_STRING([--enable-utmp],[enable utmp (utmpx) support])],
89 [if test x$enableval = xyes -o x$enableval = xno; then
90 support_utmp=$enableval
91 fi])
92
93AC_ARG_ENABLE(wtmp,
94 [AS_HELP_STRING([--enable-wtmp],[enable wtmp (wtmpx) support (requires --enable-utmp)])],
95 [if test x$enableval = xyes -o x$enableval = xno; then
96 support_wtmp=$enableval
97 fi])
98
99AC_ARG_ENABLE(lastlog,
100 [AS_HELP_STRING([--enable-lastlog],[enable lastlog support (requires --enable-utmp)])],
101 [if test x$enableval = xyes -o x$enableval = xno; then
102 support_lastlog=$enableval
103 fi])
104
105if test x$support_utmp = xyes; then
106 AC_DEFINE(UTMP_SUPPORT, 1, Define if you want to have utmp/utmpx support)
107fi
108if 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)
110fi
111if 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)
113fi
114
76AC_CHECK_FUNCS( \ 115AC_CHECK_FUNCS( \
77 ttyslot \
78 updwtmp \ 116 updwtmp \
79 updwtmpx \ 117 updwtmpx \
118 updlastlogx \
80) 119)
81 120
82AC_CHECK_HEADERS( \ 121AC_CHECK_HEADERS( \
83 utmp.h \ 122 utmp.h \
84 utmpx.h \ 123 utmpx.h \
173dnl# -------------------------------------------------------------------------- 212dnl# --------------------------------------------------------------------------
174 213
175dnl# find utmp 214dnl# find utmp
176AC_CACHE_CHECK(where utmp is located, path_utmp, 215AC_CACHE_CHECK(where utmp is located, path_utmp,
177[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 216[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
217#include <stdlib.h>
178#include <sys/types.h> 218#include <sys/types.h>
179#include <utmp.h> 219#include <utmp.h>
180#include <errno.h> 220#include <errno.h>
181main() 221main()
182{ 222{
209 249
210dnl# find utmpx - if a utmp file exists at the same location and is more than 250dnl# find utmpx - if a utmp file exists at the same location and is more than
211dnl# a day newer, then dump the utmpx. People leave lots of junk around. 251dnl# a day newer, then dump the utmpx. People leave lots of junk around.
212AC_CACHE_CHECK(where utmpx is located, path_utmpx, 252AC_CACHE_CHECK(where utmpx is located, path_utmpx,
213[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 253[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
254#include <stdlib.h>
214#include <sys/types.h> 255#include <sys/types.h>
215#include <utmpx.h> 256#include <utmpx.h>
216#include <errno.h> 257#include <errno.h>
217#include <sys/stat.h> 258#include <sys/stat.h>
218#ifdef HAVE_STRING_H 259#ifdef HAVE_STRING_H
254dnl# -------------------------------------------------------------------------- 295dnl# --------------------------------------------------------------------------
255 296
256dnl# find wtmp 297dnl# find wtmp
257AC_CACHE_CHECK(where wtmp is located, path_wtmp, 298AC_CACHE_CHECK(where wtmp is located, path_wtmp,
258[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 299[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
300#include <stdlib.h>
259#include <sys/types.h> 301#include <sys/types.h>
260#ifdef HAVE_UTMP_H 302#ifdef HAVE_UTMP_H
261#include <utmp.h> 303#include <utmp.h>
262#endif 304#endif
263#include <errno.h> 305#include <errno.h>
264main() 306main()
265{ 307{
266 char **w, *wtmplist[] = { 308 char **w, *wtmplist[] = {
267 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL }; 309 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL };
268 FILE *a, *f=fopen("conftestval", "w"); 310 FILE *a, *f=fopen("conftestval", "w");
269 if (!f) exit(1); 311 if (!f) exit(1);
270#ifdef WTMP_FILE 312#ifdef WTMP_FILE
271 fprintf(f, "%s\n", WTMP_FILE); 313 fprintf(f, "%s\n", WTMP_FILE);
272 exit(0); 314 exit(0);
290dnl# -------------------------------------------------------------------------- 332dnl# --------------------------------------------------------------------------
291 333
292dnl# find wtmpx 334dnl# find wtmpx
293AC_CACHE_CHECK(where wtmpx is located, path_wtmpx, 335AC_CACHE_CHECK(where wtmpx is located, path_wtmpx,
294[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 336[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
337#include <stdlib.h>
295#ifdef HAVE_UTMPX_H 338#ifdef HAVE_UTMPX_H
296#include <utmpx.h> 339#include <utmpx.h>
297#endif 340#endif
298#include <errno.h> 341#include <errno.h>
299main() 342main()
300{ 343{
301 char **w, *wtmplist[] = { 344 char **w, *wtmplist[] = {
302 "/var/log/wtmpx", "/var/adm/wtmpx", NULL }; 345 "/var/log/wtmpx", "/var/adm/wtmpx", NULL };
303 FILE *a, *f=fopen("conftestval", "w"); 346 FILE *a, *f=fopen("conftestval", "w");
304 if (!f) exit(1); 347 if (!f) exit(1);
305#ifdef WTMPX_FILE 348#ifdef WTMPX_FILE
306 fprintf(f, "%s\n", WTMPX_FILE); 349 fprintf(f, "%s\n", WTMPX_FILE);
307 exit(0); 350 exit(0);
325dnl# -------------------------------------------------------------------------- 368dnl# --------------------------------------------------------------------------
326 369
327dnl# find lastlog 370dnl# find lastlog
328AC_CACHE_CHECK(where lastlog is located, path_lastlog, 371AC_CACHE_CHECK(where lastlog is located, path_lastlog,
329[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 372[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
373#include <stdlib.h>
330#include <sys/types.h> 374#include <sys/types.h>
331#ifdef HAVE_UTMPX_H 375#ifdef HAVE_UTMPX_H
332#include <utmpx.h> 376#include <utmpx.h>
333#elif defined(HAVE_UTMP_H) 377#elif defined(HAVE_UTMP_H)
334#include <utmp.h> 378#include <utmp.h>
359 exit(0); 403 exit(0);
360}]])],[path_lastlog=`cat conftestval`],[path_lastlog=],[dnl 404}]])],[path_lastlog=`cat conftestval`],[path_lastlog=],[dnl
361 AC_MSG_WARN(Define LASTLOG_FILE in config.h manually)])]) 405 AC_MSG_WARN(Define LASTLOG_FILE in config.h manually)])])
362if test x$path_lastlog != x; then 406if test x$path_lastlog != x; then
363 AC_DEFINE_UNQUOTED(LASTLOG_FILE, "$path_lastlog", Define location of lastlog) 407 AC_DEFINE_UNQUOTED(LASTLOG_FILE, "$path_lastlog", Define location of lastlog)
364 if test -d "$path_lastlog"; then
365 AC_DEFINE(LASTLOG_IS_DIR, 1, Define if lastlog is provided via a directory)
366 fi
367fi 408fi
368dnl# -------------------------------------------------------------------------- 409dnl# --------------------------------------------------------------------------
369 410
370dnl# find lastlogx 411dnl# find lastlogx
371AC_CACHE_CHECK(where lastlogx is located, path_lastlogx, 412AC_CACHE_CHECK(where lastlogx is located, path_lastlogx,
372[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 413[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
414#include <stdlib.h>
373#ifdef HAVE_UTMPX_H 415#ifdef HAVE_UTMPX_H
374#include <utmpx.h> 416#include <utmpx.h>
375#endif 417#endif
376#include <errno.h> 418#include <errno.h>
377main() 419main()
403 445
404AC_DEFUN([SCM_RIGHTS_CHECK], 446AC_DEFUN([SCM_RIGHTS_CHECK],
405[ 447[
406AC_CACHE_CHECK(for unix-compliant filehandle passing ability, can_pass_fds, 448AC_CACHE_CHECK(for unix-compliant filehandle passing ability, can_pass_fds,
407[AC_TRY_LINK([ 449[AC_TRY_LINK([
408#include <cstddef> // broken bsds (is that redundant) need this 450#include <cstddef> // broken bsds (is that redundant?) need this
409#include <sys/types.h> 451#include <sys/types.h>
410#include <sys/socket.h> 452#include <sys/socket.h>
411#include <sys/uio.h> 453#include <sys/uio.h>
412],[ 454],[
413{ 455{
438 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing) 480 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing)
439else 481else
440 AC_MSG_ERROR([libptytty requires unix-compliant filehandle passing ability]) 482 AC_MSG_ERROR([libptytty requires unix-compliant filehandle passing ability])
441fi 483fi
442]) 484])
485
486AC_DEFUN([TTY_GROUP_CHECK],
487[
488AC_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
495main()
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])])
511if test x$tty_group = xyes; then
512 AC_DEFINE(TTY_GID_SUPPORT, 1, "")
513fi])
514

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines