]> granicus.if.org Git - php/commitdiff
Turn this off then
authorWez Furlong <wez@php.net>
Sat, 29 May 2004 09:27:18 +0000 (09:27 +0000)
committerWez Furlong <wez@php.net>
Sat, 29 May 2004 09:27:18 +0000 (09:27 +0000)
ext/standard/proc_open.c

index ddc34a2c2f6d8f780af7b0ff7ee402bfa35ebf28..2041d3481ff389e9b2f17d3073176bfdffb0494a 100644 (file)
@@ -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 <sys/ioctl.h>
 # include <termios.h>
 # define PHP_CAN_DO_PTS        1