From bd818c0118ba406d82f901d4f97a134727440df4 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sat, 29 May 2004 09:27:18 +0000 Subject: [PATCH] Turn this off then --- ext/standard/proc_open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index ddc34a2c2f..2041d3481f 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -17,7 +17,7 @@ */ /* $Id$ */ -#if defined(__linux__) || defined(sun) || defined(__IRIX__) +#if 0 && (defined(__linux__) || defined(sun) || defined(__IRIX__)) # define _BSD_SOURCE /* linux wants this when XOPEN mode is on */ # define _BSD_COMPAT /* irix: uint */ # define _XOPEN_SOURCE 500 /* turn on Unix98 */ @@ -56,7 +56,7 @@ * */ #ifdef PHP_CAN_SUPPORT_PROC_OPEN -#if HAVE_PTSNAME && HAVE_GRANTPT && HAVE_UNLOCKPT && HAVE_SYS_IOCTL_H && HAVE_TERMIOS_H +#if 0 && HAVE_PTSNAME && HAVE_GRANTPT && HAVE_UNLOCKPT && HAVE_SYS_IOCTL_H && HAVE_TERMIOS_H # include # include # define PHP_CAN_DO_PTS 1 -- 2.40.0