From: Martin v. Löwis Date: Sat, 20 Sep 2003 11:20:30 +0000 (+0000) Subject: Patch #730597: Disable POPEN for RTEMS. X-Git-Tag: v2.4a1~1555 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=212ede6cbf2ce9277d6e5bced1137ec5914cc421;p=python Patch #730597: Disable POPEN for RTEMS. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f5b15d9cfa..fa8215a468 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