Blame gnulib/m4/pipe.m4

Packit 06dd63
# pipe.m4 serial 2
Packit 06dd63
dnl Copyright (C) 2010-2019 Free Software Foundation, Inc.
Packit 06dd63
dnl This file is free software; the Free Software Foundation
Packit 06dd63
dnl gives unlimited permission to copy and/or distribute it,
Packit 06dd63
dnl with or without modifications, as long as this notice is preserved.
Packit 06dd63
Packit 06dd63
AC_DEFUN([gl_FUNC_PIPE],
Packit 06dd63
[
Packit 06dd63
  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
Packit 06dd63
Packit 06dd63
  AC_CHECK_FUNCS_ONCE([pipe])
Packit 06dd63
  if test $ac_cv_func_pipe != yes; then
Packit 06dd63
    HAVE_PIPE=0
Packit 06dd63
  fi
Packit 06dd63
])