From: Andrew M. Kuchling Date: Wed, 2 Jun 2004 17:42:56 +0000 (+0000) Subject: Don't build the pcre module any more X-Git-Tag: v2.4a1~301 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7e836e6dda738bdbc9aa0447fc245ec40abd9a7;p=python Don't build the pcre module any more --- 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']) )