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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines