From 1cbb62e82d501975f6661c4d0760be925cd404b9 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 26 Jun 2020 09:23:52 +0000 Subject: [PATCH] Haiku proc_open build fix, *pty api resides on the BSD library Closes GH-5770. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 2a62ca6eb8..df64a61015 100644 --- a/configure.ac +++ b/configure.ac @@ -692,8 +692,8 @@ if test "$PHP_VALGRIND" != "no"; then fi fi -dnl Check for openpty. It may require linking against libutil. -PHP_CHECK_FUNC(openpty, util) +dnl Check for openpty. It may require linking against libutil or libbsd. +PHP_CHECK_FUNC(openpty, util, bsd) dnl General settings. dnl ---------------------------------------------------------------------------- -- 2.50.1