diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-11-18 15:26:43 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-11-18 15:26:43 (GMT) |
commit | 972573553e4c323452033cdcb811438ee09220f9 (patch) | |
tree | 88a85429e5938e11df5458cd17ef612a6d9e7a86 /Mac/Modules/waste | |
parent | 5efbbcd79306247c63c4a9175df4230a92b3d5be (diff) | |
download | cpython-972573553e4c323452033cdcb811438ee09220f9.zip cpython-972573553e4c323452033cdcb811438ee09220f9.tar.gz cpython-972573553e4c323452033cdcb811438ee09220f9.tar.bz2 |
Define PyDoc_STR if it isn't defined. This makes these modules compile
for Python 2.2.
Diffstat (limited to 'Mac/Modules/waste')
-rw-r--r-- | Mac/Modules/waste/wastemodule.c | 3 | ||||
-rw-r--r-- | Mac/Modules/waste/wastescan.py | 2 | ||||
-rw-r--r-- | Mac/Modules/waste/wastesupport.py | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/Mac/Modules/waste/wastemodule.c b/Mac/Modules/waste/wastemodule.c index dd77cef..e501074 100644 --- a/Mac/Modules/waste/wastemodule.c +++ b/Mac/Modules/waste/wastemodule.c @@ -23,6 +23,9 @@ #include <WASTE.h> #include <WEObjectHandlers.h> #include <WETabs.h> +#ifndef PyDoc_STR +#define PyDoc_STR(x) (x) +#endif /* Exported by Qdmodule.c: */ extern PyObject *QdRGB_New(RGBColor *); diff --git a/Mac/Modules/waste/wastescan.py b/Mac/Modules/waste/wastescan.py index b0644ec..bb186aa 100644 --- a/Mac/Modules/waste/wastescan.py +++ b/Mac/Modules/waste/wastescan.py @@ -6,7 +6,7 @@ from bgenlocations import TOOLBOXDIR, BGENDIR sys.path.append(BGENDIR) from scantools import Scanner -WASTEDIR='/Applications/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/MacOS Support/(Third Party Support)/Waste 2.0 Distribution/C_C++ Headers/' +WASTEDIR='/Volumes/Moes/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/MacOS Support/(Third Party Support)/Waste 2.0 Distribution/C_C++ Headers/' if not os.path.exists(WASTEDIR): raise 'Error: not found: %s', WASTEDIR diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py index 40701c5..674f9f9 100644 --- a/Mac/Modules/waste/wastesupport.py +++ b/Mac/Modules/waste/wastesupport.py @@ -63,6 +63,9 @@ includestuff = includestuff + """ #include <%s>""" % MACHEADERFILE + """ #include <WEObjectHandlers.h> #include <WETabs.h> +#ifndef PyDoc_STR +#define PyDoc_STR(x) (x) +#endif /* Exported by Qdmodule.c: */ extern PyObject *QdRGB_New(RGBColor *); |