Blame gettext-tools/gnulib-m4/pipe2.m4

Packit Bot 06c835
# pipe2.m4 serial 2
Packit Bot 06c835
dnl Copyright (C) 2009-2015 Free Software Foundation, Inc.
Packit Bot 06c835
dnl This file is free software; the Free Software Foundation
Packit Bot 06c835
dnl gives unlimited permission to copy and/or distribute it,
Packit Bot 06c835
dnl with or without modifications, as long as this notice is preserved.
Packit Bot 06c835
Packit Bot 06c835
AC_DEFUN([gl_FUNC_PIPE2],
Packit Bot 06c835
[
Packit Bot 06c835
  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
Packit Bot 06c835
Packit Bot 06c835
  dnl Persuade glibc <unistd.h> to declare pipe2().
Packit Bot 06c835
  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
Packit Bot 06c835
Packit Bot 06c835
  AC_CHECK_FUNCS_ONCE([pipe2])
Packit Bot 06c835
  if test $ac_cv_func_pipe2 != yes; then
Packit Bot 06c835
    HAVE_PIPE2=0
Packit Bot 06c835
  fi
Packit Bot 06c835
])