Changeset 1253


Ignore:
Timestamp:
Nov 9, 2017, 11:34:12 PM (7 years ago)
Author:
dmik
Message:

python: Enable real os.spawnv* implementation on OS/2.

As OS/2 uses Posix code path now, a spawnv* emulation with fork was used due to a missing define.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified python/trunk/Modules/posixmodule.c

    r404 r1253  
    142142#else                   /* all other compilers */
    143143/* Unix functions that the configure script doesn't check for */
     144#if defined(PYOS_OS2)
     145#define HAVE_SPAWNV     1
     146#endif
    144147#define HAVE_EXECV      1
    145148#define HAVE_FORK       1
Note: See TracChangeset for help on using the changeset viewer.