# HG changeset patch # User Mike Miller # Date 1459972360 25200 # Node ID ec77a07e422049a121656be60253a015ca62a61b # Parent ad90fb5a139f9c290415da7c09853e3614d8cf9b# Parent 7f3519e6194adca5a38170f9c15207771536f660 maint: merge stable to default. diff -r ad90fb5a139f -r ec77a07e4220 bootstrap.conf --- a/bootstrap.conf Wed Apr 06 10:54:31 2016 -0400 +++ b/bootstrap.conf Wed Apr 06 12:52:40 2016 -0700 @@ -74,6 +74,7 @@ open opendir pathmax + pipe-posix progname putenv readdir diff -r ad90fb5a139f -r ec77a07e4220 liboctave/system/oct-syscalls.cc --- a/liboctave/system/oct-syscalls.cc Wed Apr 06 10:54:31 2016 -0400 +++ b/liboctave/system/oct-syscalls.cc Wed Apr 06 12:52:40 2016 -0700 @@ -233,14 +233,10 @@ int status = -1; -#if defined (HAVE_PIPE) - status = ::pipe (fildes); + status = gnulib::pipe (fildes); if (status < 0) msg = gnulib::strerror (errno); -#else - msg = NOT_SUPPORTED ("pipe"); -#endif return status; }