1 # Test whether a file descriptor is a pipe.
3 dnl Copyright (C) 2006, 2009-2020 Free Software Foundation, Inc.
5 dnl This file is free software; the Free Software Foundation
6 dnl gives unlimited permission to copy and/or distribute it,
7 dnl with or without modifications, as long as this notice is preserved.
9 dnl Written by Paul Eggert.
11 AC_DEFUN([gl_ISAPIPE],
13 # OpenVMS has isapipe already, so check for it.
14 AC_CHECK_FUNCS([isapipe])
15 if test $ac_cv_func_isapipe = yes; then
22 # Prerequisites of lib/isapipe.c.
23 AC_DEFUN([gl_PREREQ_ISAPIPE],
25 AC_CACHE_CHECK([whether pipes are FIFOs (and for their link count)],
26 [gl_cv_pipes_are_fifos],
30 #include <sys/types.h>
40 main (int argc, char **argv)
46 if (fstat (fd[0], &st) != 0)
48 if (2 <= argc && argv[1][0] == '-')
50 char const *yesno = (S_ISFIFO (st.st_mode) ? "yes" : "no");
53 long int i = st.st_nlink;
56 printf ("%s (%ld)\n", yesno, i);
60 unsigned long int i = st.st_nlink;
63 printf ("%s (%lu)\n", yesno, i);
68 if (! S_ISFIFO (st.st_mode) && ! S_ISSOCK (st.st_mode))
73 [gl_cv_pipes_are_fifos=`./conftest$ac_exeext -`
74 test -z "$gl_cv_pipes_are_fifos" && gl_cv_pipes_are_fifos=no],
75 [gl_cv_pipes_are_fifos=unknown],
76 [gl_cv_pipes_are_fifos=cross-compiling])])
78 case $gl_cv_pipes_are_fifos in #(
80 AC_DEFINE([HAVE_FIFO_PIPES], [1],
81 [Define to 1 if pipes are FIFOs, 0 if sockets. Leave undefined
84 AC_DEFINE([HAVE_FIFO_PIPES], [0]);;
87 case $gl_cv_pipes_are_fifos in #(
89 AC_DEFINE_UNQUOTED([PIPE_LINK_COUNT_MAX],
90 [`expr "$gl_cv_pipes_are_fifos" : '.*\((.*)\)'`],
91 [Define to the maximum link count that a true pipe can have.]);;