summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-06-02 17:42:56 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-06-02 17:42:56 +0000
commite27b33e27fd65ad7cf06b25ba8c1fe3e021c4381 (patch)
treed0fc241e197e06320efe408b1c4733bcc426317c
parent0ffae913276c91ed364b8612d8093c611053d5da (diff)
downloadcpython-e27b33e27fd65ad7cf06b25ba8c1fe3e021c4381.tar.gz
Don't build the pcre module any more
-rw-r--r--Misc/BeOS-setup.py1
-rw-r--r--setup.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/Misc/BeOS-setup.py b/Misc/BeOS-setup.py
index 438daa72da..c1435b60bc 100644
--- a/Misc/BeOS-setup.py
+++ b/Misc/BeOS-setup.py
@@ -177,7 +177,6 @@ class PyBuildExt(build_ext):
# Some modules that are normally always on:
exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
- exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
exts.append( Extension('_weakref', ['_weakref.c']) )
exts.append( Extension('_symtable', ['symtablemodule.c']) )
diff --git a/setup.py b/setup.py
index 52ed232452..9057bacffc 100644
--- a/setup.py
+++ b/setup.py
@@ -296,7 +296,6 @@ class PyBuildExt(build_ext):
# Some modules that are normally always on:
exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
- exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
exts.append( Extension('_hotshot', ['_hotshot.c']) )
exts.append( Extension('_weakref', ['_weakref.c']) )