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

Comparing libptytty/ptytty.m4 (file contents):
Revision 1.15 by ayin, Mon Nov 5 22:06:56 2007 UTC vs.
Revision 1.29 by sf-exg, Sun Nov 20 14:38:44 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 const 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 \
21 seteuid \ 53 seteuid \
22 setreuid \ 54 setreuid \
23 setresuid \ 55 setresuid \
24) 56)
25 57
26have_clone=no
27
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)
39if 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
44else
45 AC_MSG_RESULT(no)
46fi
47
48case $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 ;;
64esac
65
66if 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) 58AC_MSG_CHECKING(for UNIX98 ptys)
68 AC_TRY_LINK([#include <stdlib.h>], 59AC_LINK_IFELSE(
60 [AC_LANG_PROGRAM(
61 [[#include <stdlib.h>]],
69 [grantpt(0);unlockpt(0);ptsname(0);], 62 [[grantpt(0);unlockpt(0);ptsname(0);]])],
70 [unix98_pty=yes 63 [unix98_pty=yes
71 AC_DEFINE(UNIX98_PTY, 1, "") 64 AC_DEFINE(UNIX98_PTY, 1, "")
72 AC_MSG_RESULT(yes)], 65 AC_MSG_RESULT(yes)],
73 [AC_MSG_RESULT(no)]) 66 [AC_MSG_RESULT(no)])
74fi
75 67
76if test -z "$unix98_pty"; then 68if test -z "$unix98_pty"; then
77 AC_CHECK_FUNCS(openpty, [], [AC_CHECK_LIB(util, openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"])]) 69 AC_SEARCH_LIBS(openpty, util, AC_DEFINE(HAVE_OPENPTY, 1, ""))
78fi 70fi
79]) 71])
80 72
81AC_DEFUN([UTMP_CHECK], 73AC_DEFUN([UTMP_CHECK],
82[ 74[
125dnl# -------------------------------------------------------------------------- 117dnl# --------------------------------------------------------------------------
126dnl# check for host field in utmp structure 118dnl# check for host field in utmp structure
127 119
128dnl# -------------------------------------------- 120dnl# --------------------------------------------
129AC_CHECK_HEADERS(utmp.h, 121AC_CHECK_HEADERS(utmp.h,
130[AC_CACHE_CHECK([for struct utmp], struct_utmp, 122AC_CHECK_TYPES([struct utmp], [], [], [
131[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 123#include <sys/types.h>
132#include <utmp.h>]], [[struct utmp ut;]])],[struct_utmp=yes],[struct_utmp=no])]) 124#include <utmp.h>
133if test x$struct_utmp = xyes; then 125])
134 AC_DEFINE(HAVE_STRUCT_UTMP, 1, Define if utmp.h has struct utmp)
135fi
136]
137 126
138AC_CACHE_CHECK(for ut_host in utmp struct, struct_utmp_host, 127AC_CHECK_MEMBER([struct utmp.ut_host],
139[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])])
141if test x$struct_utmp_host = xyes; then
142 AC_DEFINE(HAVE_UTMP_HOST, 1, Define if struct utmp contains ut_host) 128[AC_DEFINE(HAVE_UTMP_HOST, 1, Define if struct utmp contains ut_host)], [], [
143fi 129#include <sys/types.h>
130#include <utmp.h>
131])
144 132
145AC_CACHE_CHECK(for ut_pid in utmp struct, struct_utmp_pid, 133AC_CHECK_MEMBER([struct utmp.ut_pid],
146[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])])
148if test x$struct_utmp_pid = xyes; then
149 AC_DEFINE(HAVE_UTMP_PID, 1, Define if struct utmp contains ut_pid) 134[AC_DEFINE(HAVE_UTMP_PID, 1, Define if struct utmp contains ut_pid)], [], [
150fi 135#include <sys/types.h>
136#include <utmp.h>
137])
151) dnl# AC_CHECK_HEADERS(utmp.h 138) dnl# AC_CHECK_HEADERS(utmp.h
152 139
153dnl# -------------------------------------------- 140dnl# --------------------------------------------
154 141
155AC_CHECK_HEADERS(utmpx.h, 142AC_CHECK_HEADERS(utmpx.h,
156[AC_CACHE_CHECK([for struct utmpx], struct_utmpx, 143AC_CHECK_TYPES([struct utmpx], [], [], [
157[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 144#include <sys/types.h>
158#include <utmpx.h>]], [[struct utmpx ut;]])],[struct_utmpx=yes],[struct_utmpx=no])])
159if test x$struct_utmpx = xyes; then
160 AC_DEFINE(HAVE_STRUCT_UTMPX, 1, Define if utmpx.h has struct utmpx)
161fi
162]
163
164AC_CACHE_CHECK(for host in utmpx struct, struct_utmpx_host,
165[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])])
167if test x$struct_utmpx_host = xyes; then
168 AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)
169fi
170
171AC_CACHE_CHECK(for session in utmpx struct, struct_utmpx_session,
172[AC_TRY_COMPILE([#include <sys/types.h>
173#include <utmpx.h>], 145#include <utmpx.h>
174[struct utmpx utx; utx.ut_session;], 146])
175struct_utmpx_session=yes, struct_utmpx_session=no)]) 147
176if test x$struct_utmpx_session = xyes; then 148AC_CHECK_MEMBER([struct utmpx.ut_host],
149[AC_DEFINE(HAVE_UTMPX_HOST, 1, Define if struct utmpx contains ut_host)], [], [
150#include <sys/types.h>
151#include <utmpx.h>
152])
153
154AC_CHECK_MEMBER([struct utmpx.ut_session],
177 AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session) 155[AC_DEFINE(HAVE_UTMPX_SESSION, 1, Define if struct utmpx contains ut_session)], [], [
178fi 156#include <sys/types.h>
157#include <utmpx.h>
158])
179) dnl# AC_CHECK_HEADERS(utmpx.h 159) dnl# AC_CHECK_HEADERS(utmpx.h
180 160
181dnl# -------------------------------------------------------------------------- 161dnl# --------------------------------------------------------------------------
182dnl# check for struct lastlog 162dnl# check for struct lastlog
183AC_CACHE_CHECK(for struct lastlog, struct_lastlog, 163AC_CHECK_TYPES([struct lastlog], [], [], [
184[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 164#include <sys/types.h>
185#include <utmp.h> 165#include <utmp.h>
186#ifdef HAVE_LASTLOG_H 166#ifdef HAVE_LASTLOG_H
187#include <lastlog.h> 167#include <lastlog.h>
188#endif 168#endif
189]], [[struct lastlog ll;]])],[struct_lastlog=yes],[struct_lastlog=no])]) 169])
190if test x$struct_lastlog = xyes; then
191 AC_DEFINE(HAVE_STRUCT_LASTLOG, 1, Define if utmp.h or lastlog.h has struct lastlog)
192fi
193 170
194dnl# check for struct lastlogx 171dnl# check for struct lastlogx
195AC_CACHE_CHECK(for struct lastlogx, struct_lastlogx, 172AC_CHECK_TYPES([struct lastlogx], [], [], [
196[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h> 173#include <sys/types.h>
197#include <utmpx.h> 174#include <utmpx.h>
198#ifdef HAVE_LASTLOG_H 175#ifdef HAVE_LASTLOG_H
199#include <lastlog.h> 176#include <lastlog.h>
200#endif 177#endif
201]], [[struct lastlogx ll;]])],[struct_lastlogx=yes],[struct_lastlogx=no])]) 178])
202if test x$struct_lastlogx = xyes; then
203 AC_DEFINE(HAVE_STRUCT_LASTLOGX, 1, Define if utmpx.h or lastlog.h has struct lastlogx)
204fi
205 179
206dnl# -------------------------------------------------------------------------- 180dnl# --------------------------------------------------------------------------
207dnl# FIND FILES 181dnl# FIND FILES
208dnl# -------------------------------------------------------------------------- 182dnl# --------------------------------------------------------------------------
209 183
210dnl# find utmp 184dnl# find utmp
211AC_CACHE_CHECK(where utmp is located, path_utmp, 185PT_FIND_FILE([utmp], [UTMP_FILE], [_PATH_UTMP],
212[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
213#include <stdlib.h>
214#include <sys/types.h>
215#include <utmp.h>
216#include <errno.h>
217main()
218{
219 char **u, *utmplist[] = {
220 "/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp", NULL }; 186["/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp"],[
221 FILE *a, *f=fopen("conftestval", "w");
222 if (!f) exit(1);
223#ifdef UTMP_FILE
224 fprintf(f, "%s\n", UTMP_FILE);
225 exit(0);
226#endif
227#ifdef _PATH_UTMP
228 fprintf(f, "%s\n", _PATH_UTMP);
229 exit(0);
230#endif
231 for (u = utmplist; *u; u++) {
232 if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
233 fprintf(f, "%s\n", *u);
234 exit(0);
235 }
236 }
237 exit(0);
238}]])],[path_utmp=`cat conftestval`],[path_utmp=],[dnl
239 AC_MSG_WARN(Define UTMP_FILE in config.h manually)])])
240if test x$path_utmp != x; then
241 AC_DEFINE_UNQUOTED(UTMP_FILE, "$path_utmp", Define location of utmp)
242fi
243
244dnl# --------------------------------------------------------------------------
245
246dnl# find utmpx - if a utmp file exists at the same location and is more than
247dnl# a day newer, then dump the utmpx. People leave lots of junk around.
248AC_CACHE_CHECK(where utmpx is located, path_utmpx,
249[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
250#include <stdlib.h>
251#include <sys/types.h> 187#include <sys/types.h>
252#include <utmpx.h> 188#include <utmp.h>
253#include <errno.h> 189])
254#include <sys/stat.h>
255#ifdef HAVE_STRING_H
256#include <string.h>
257#endif
258main()
259{
260 char **u, *p, *utmplist[] = {
261#ifdef UTMPX_FILE
262 UTMPX_FILE,
263#endif
264#ifdef _PATH_UTMPX
265 _PATH_UTMPX,
266#endif
267 "/var/adm/utmpx", "/etc/utmpx", NULL };
268 FILE *a, *f=fopen("conftestval", "w");
269 struct stat statu, statux;
270 if (!f) exit(1);
271 for (u = utmplist; *u; u++) {
272 if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
273 if (stat(*u, &statux) < 0)
274 continue;
275 p = strdup(*u);
276 p[strlen(p) - 1] = '\0';
277 if (stat(p, &statu) >= 0
278 && (statu.st_mtime - statux.st_mtime > 86400))
279 continue;
280 fprintf(f, "%s\n", *u);
281 exit(0);
282 }
283 }
284 exit(0);
285}]])],[path_utmpx=`cat conftestval`],[path_utmpx=],[dnl
286 AC_MSG_WARN(Define UTMPX_FILE in config.h manually)])])
287if test x$path_utmpx != x; then
288 AC_DEFINE_UNQUOTED(UTMPX_FILE, "$path_utmpx", Define location of utmpx)
289fi
290 190
291dnl# -------------------------------------------------------------------------- 191dnl# --------------------------------------------------------------------------
292 192
293dnl# find wtmp 193dnl# find wtmp
294AC_CACHE_CHECK(where wtmp is located, path_wtmp, 194PT_FIND_FILE([wtmp], [WTMP_FILE], [_PATH_WTMP],
295[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 195["/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp"],[
296#include <stdlib.h>
297#include <sys/types.h> 196#include <sys/types.h>
298#ifdef HAVE_UTMP_H 197#ifdef HAVE_UTMP_H
299#include <utmp.h> 198#include <utmp.h>
300#endif 199#endif
301#include <errno.h> 200])
302main()
303{
304 char **w, *wtmplist[] = {
305 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL };
306 FILE *a, *f=fopen("conftestval", "w");
307 if (!f) exit(1);
308#ifdef WTMP_FILE
309 fprintf(f, "%s\n", WTMP_FILE);
310 exit(0);
311#endif
312#ifdef _PATH_WTMP
313 fprintf(f, "%s\n", _PATH_WTMP);
314 exit(0);
315#endif
316 for (w = wtmplist; *w; w++) {
317 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
318 fprintf(f, "%s\n", *w);
319 exit(0);
320 }
321 }
322 exit(0);
323}]])],[path_wtmp=`cat conftestval`],[path_wtmp=],[dnl
324 AC_MSG_WARN(Define WTMP_FILE in config.h manually)])])
325if test x$path_wtmp != x; then
326 AC_DEFINE_UNQUOTED(WTMP_FILE, "$path_wtmp", Define location of wtmp)
327fi
328dnl# -------------------------------------------------------------------------- 201dnl# --------------------------------------------------------------------------
329 202
330dnl# find wtmpx 203dnl# find wtmpx
331AC_CACHE_CHECK(where wtmpx is located, path_wtmpx, 204PT_FIND_FILE([wtmpx], [WTMPX_FILE], [_PATH_WTMPX],
332[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 205["/var/log/wtmpx", "/var/adm/wtmpx"],[
333#include <stdlib.h>
334#ifdef HAVE_UTMPX_H 206#ifdef HAVE_UTMPX_H
335#include <utmpx.h> 207#include <utmpx.h>
336#endif 208#endif
337#include <errno.h> 209])
338main()
339{
340 char **w, *wtmplist[] = {
341 "/var/log/wtmpx", "/var/adm/wtmpx", NULL };
342 FILE *a, *f=fopen("conftestval", "w");
343 if (!f) exit(1);
344#ifdef WTMPX_FILE
345 fprintf(f, "%s\n", WTMPX_FILE);
346 exit(0);
347#endif
348#ifdef _PATH_WTMPX
349 fprintf(f, "%s\n", _PATH_WTMPX);
350 exit(0);
351#endif
352 for (w = wtmplist; *w; w++) {
353 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
354 fprintf(f, "%s\n", *w);
355 exit(0);
356 }
357 }
358 exit(0);
359}]])],[path_wtmpx=`cat conftestval`],[path_wtmpx=],[dnl
360 AC_MSG_WARN(Define WTMPX_FILE in config.h manually)])])
361if test x$path_wtmpx != x; then
362 AC_DEFINE_UNQUOTED(WTMPX_FILE, "$path_wtmpx", Define location of wtmpx)
363fi
364dnl# -------------------------------------------------------------------------- 210dnl# --------------------------------------------------------------------------
365 211
366dnl# find lastlog 212dnl# find lastlog
367AC_CACHE_CHECK(where lastlog is located, path_lastlog, 213PT_FIND_FILE([lastlog], [LASTLOG_FILE], [_PATH_LASTLOG],
368[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 214["/var/log/lastlog"],[
369#include <stdlib.h>
370#include <sys/types.h> 215#include <sys/types.h>
371#ifdef HAVE_UTMPX_H 216#ifdef HAVE_UTMP_H
372#include <utmpx.h>
373#elif defined(HAVE_UTMP_H)
374#include <utmp.h> 217#include <utmp.h>
375#endif 218#endif
376#ifdef HAVE_LASTLOG_H 219#ifdef HAVE_LASTLOG_H
377#include <lastlog.h> 220#include <lastlog.h>
378#endif 221#endif
379#include <errno.h> 222])
380main()
381{
382 char **w, *lastloglist[] = { "/var/log/lastlog", NULL };
383 FILE *a, *f=fopen("conftestval", "w");
384 if (!f) exit(1);
385#ifdef LASTLOG_FILE
386 fprintf(f, "%s\n", LASTLOG_FILE);
387 exit(0);
388#endif
389#ifdef _PATH_LASTLOG
390 fprintf(f, "%s\n", _PATH_LASTLOG);
391 exit(0);
392#endif
393 for (w = lastloglist; *w; w++) {
394 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
395 fprintf(f, "%s\n", *w);
396 exit(0);
397 }
398 }
399 exit(0);
400}]])],[path_lastlog=`cat conftestval`],[path_lastlog=],[dnl
401 AC_MSG_WARN(Define LASTLOG_FILE in config.h manually)])])
402if test x$path_lastlog != x; then
403 AC_DEFINE_UNQUOTED(LASTLOG_FILE, "$path_lastlog", Define location of lastlog)
404fi
405dnl# -------------------------------------------------------------------------- 223dnl# --------------------------------------------------------------------------
406 224
407dnl# find lastlogx 225dnl# find lastlogx
408AC_CACHE_CHECK(where lastlogx is located, path_lastlogx, 226PT_FIND_FILE([lastlogx], [LASTLOGX_FILE], [_PATH_LASTLOGX],
409[AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h> 227["/var/log/lastlogx", "/var/adm/lastlogx"],[
410#include <stdlib.h>
411#ifdef HAVE_UTMPX_H 228#ifdef HAVE_UTMPX_H
412#include <utmpx.h> 229#include <utmpx.h>
413#endif 230#endif
414#include <errno.h> 231])
415main()
416{
417 char **w, *wtmplist[] = { "/var/log/lastlogx", "/var/adm/lastlogx", NULL };
418 FILE *a, *f=fopen("conftestval", "w");
419 if (!f) exit(1);
420#ifdef LASTLOGX_FILE
421 fprintf(f, "%s\n", LASTLOGX_FILE);
422 exit(0);
423#endif
424#ifdef _PATH_LASTLOGX
425 fprintf(f, "%s\n", _PATH_LASTLOGX);
426 exit(0);
427#endif
428 for (w = wtmplist; *w; w++) {
429 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
430 fprintf(f, "%s\n", *w);
431 exit(0);
432 }
433 }
434 exit(0);
435}]])],[path_lastlogx=`cat conftestval`],[path_lastlogx=],[dnl
436 AC_MSG_WARN(Define LASTLOGX_FILE in config.h manually)])])
437if test x$path_lastlogx != x; then
438 AC_DEFINE_UNQUOTED(LASTLOGX_FILE, "$path_lastlogx", Define location of lastlogx)
439fi
440]) 232])
441 233
442AC_DEFUN([SCM_RIGHTS_CHECK], 234AC_DEFUN([SCM_RIGHTS_CHECK],
443[ 235[
444AC_CACHE_CHECK(for unix-compliant filehandle passing ability, can_pass_fds, 236AC_CACHE_CHECK(for unix-compliant filehandle passing ability, pt_cv_can_pass_fds,
445[AC_TRY_LINK([ 237[AC_LINK_IFELSE([AC_LANG_PROGRAM([[
446#include <cstddef> // broken bsds (is that redundant?) need this 238#include <cstddef> // broken bsds (is that redundant?) need this
447#include <sys/types.h> 239#include <sys/types.h>
448#include <sys/socket.h> 240#include <sys/socket.h>
449#include <sys/uio.h> 241#include <sys/uio.h>
450],[ 242]], [[
451{ 243{
452 msghdr msg; 244 msghdr msg;
453 iovec iov; 245 iovec iov;
454 char buf [100]; 246 char buf [100];
455 char data = 0; 247 char data = 0;
469 261
470 *(int *)CMSG_DATA (cmsg) = 5; 262 *(int *)CMSG_DATA (cmsg) = 5;
471 263
472 return sendmsg (3, &msg, 0); 264 return sendmsg (3, &msg, 0);
473} 265}
474],[can_pass_fds=yes],[can_pass_fds=no])]) 266]])],[pt_cv_can_pass_fds=yes],[pt_cv_can_pass_fds=no])])
475if test x$can_pass_fds = xyes; then 267if test x$pt_cv_can_pass_fds = xyes; then
476 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing) 268 AC_DEFINE(HAVE_UNIX_FDPASS, 1, Define if sys/socket.h defines the necessary macros/functions for file handle passing)
477else 269else
478 AC_MSG_ERROR([libptytty requires unix-compliant filehandle passing ability]) 270 AC_MSG_ERROR([libptytty requires unix-compliant filehandle passing ability])
479fi 271fi
480]) 272])
481 273
482AC_DEFUN([TTY_GROUP_CHECK], 274AC_DEFUN([TTY_GROUP_CHECK],
483[ 275[
484AC_CACHE_CHECK([for tty group], tty_group, 276AC_CACHE_CHECK([for tty group], pt_cv_tty_group,
485[AC_TRY_RUN([ 277[AC_RUN_IFELSE([AC_LANG_SOURCE([[
486#include <sys/types.h> 278#include <sys/types.h>
487#include <sys/stat.h> 279#include <sys/stat.h>
488#include <unistd.h> 280#include <unistd.h>
489#include <grp.h> 281#include <grp.h>
490 282
491main() 283int main()
492{ 284{
493 struct stat st; 285 struct stat st;
494 struct group *gr; 286 struct group *gr;
495 char *tty; 287 char *tty;
496 gr = getgrnam("tty"); 288 gr = getgrnam("tty");
500 && (stat(tty, &st)) == 0 292 && (stat(tty, &st)) == 0
501 && st.st_gid == gr->gr_gid) 293 && st.st_gid == gr->gr_gid)
502 return 0; 294 return 0;
503 else 295 else
504 return 1; 296 return 1;
505}],
506[tty_group=yes],[tty_group=no],[tty_group=no])]) 297}]])],[pt_cv_tty_group=yes],[pt_cv_tty_group=no],[pt_cv_tty_group=no])])
507if test x$tty_group = xyes; then 298if test x$pt_cv_tty_group = xyes; then
508 AC_DEFINE(TTY_GID_SUPPORT, 1, "") 299 AC_DEFINE(TTY_GID_SUPPORT, 1, "")
509fi]) 300fi])
510 301

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines