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

Comparing libptytty/ptytty.m4 (file contents):
Revision 1.10 by ayin, Wed Jun 13 17:30:54 2007 UTC vs.
Revision 1.26 by sf-exg, Mon May 23 11:04:41 2011 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines