OS/2 VACPP build updates/fixes

This commit is contained in:
Andrew MacIntyre 2004-03-29 11:53:38 +00:00
parent 174175bf3a
commit da4d6cb573
5 changed files with 6 additions and 5 deletions

View file

@ -42,8 +42,8 @@ corresponding Unix manual entries for more information on calls.");
#include <io.h>
#include <stdio.h>
#include <process.h>
#include "osdefs.h"
#endif
#include "osdefs.h"
#endif
#include <sys/types.h>

View file

@ -165,6 +165,7 @@ OBJECTS = \
$(PATHOBJ)\MethodObject.obj \
$(PATHOBJ)\ModuleObject.obj \
$(PATHOBJ)\Object.obj \
$(PATHOBJ)\ObMalloc.obj \
$(PATHOBJ)\RangeObject.obj \
$(PATHOBJ)\SliceObject.obj \
$(PATHOBJ)\StringObject.obj \

View file

@ -54,7 +54,7 @@
/* Provide a default library so writers of extension modules
* won't have to explicitly specify it anymore
*/
#pragma library("Python22.lib")
#pragma library("Python24.lib")
/***************************************************/
/* 32-Bit IBM VisualAge C/C++ v3.0 for OS/2 */

View file

@ -1,5 +1,5 @@
LIBRARY PYTHON22 INITINSTANCE TERMINSTANCE
DESCRIPTION 'Python 2.2 Core DLL'
LIBRARY PYTHON24 INITINSTANCE TERMINSTANCE
DESCRIPTION 'Python 2.4 Core DLL'
PROTMODE
DATA MULTIPLE NONSHARED

View file

@ -575,7 +575,7 @@ builtin_execfile(PyObject *self, PyObject *args)
struct stat s;
if (stat(filename, &s) == 0) {
if (S_ISDIR(s.st_mode))
# if defined(PY_OS2) && defined(PYCC_VACPP)
# if defined(PYOS_OS2) && defined(PYCC_VACPP)
errno = EOS2ERR;
# else
errno = EISDIR;