From 212ede6cbf2ce9277d6e5bced1137ec5914cc421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 20 Sep 2003 11:20:30 +0000 Subject: Patch #730597: Disable POPEN for RTEMS. --- Modules/posixmodule.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f5b15d9..fa8215a 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -122,7 +122,9 @@ corresponding Unix manual entries for more information on calls."); #define HAVE_KILL 1 #define HAVE_OPENDIR 1 #define HAVE_PIPE 1 +#ifndef __rtems__ #define HAVE_POPEN 1 +#endif #define HAVE_SYSTEM 1 #define HAVE_WAIT 1 #define HAVE_TTYNAME 1 -- cgit v0.12