summaryrefslogtreecommitdiffstats
path: root/abs/core/python/python-internal-expat.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-12-09 03:51:31 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-12-09 03:51:31 (GMT)
commit22cf86961b2c62437603fd3a61dfab580bedd837 (patch)
tree91f5f1fb6d52e4a879d0e21ef60be86c6e2a07a4 /abs/core/python/python-internal-expat.patch
parent387348a06c19253fa328d8aa9d421328e2aab993 (diff)
downloadlinhes_pkgbuild-22cf86961b2c62437603fd3a61dfab580bedd837.zip
linhes_pkgbuild-22cf86961b2c62437603fd3a61dfab580bedd837.tar.gz
linhes_pkgbuild-22cf86961b2c62437603fd3a61dfab580bedd837.tar.bz2
gdbm: recompile with some needed patches. Remove python (python3).
Diffstat (limited to 'abs/core/python/python-internal-expat.patch')
-rw-r--r--abs/core/python/python-internal-expat.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/abs/core/python/python-internal-expat.patch b/abs/core/python/python-internal-expat.patch
deleted file mode 100644
index 86252ab..0000000
--- a/abs/core/python/python-internal-expat.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- setup.py 2008-04-22 12:12:24.613554757 +0300
-+++ setup.py 2008-04-22 12:13:09.276544063 +0300
-@@ -1035,18 +1035,15 @@
- #
- # More information on Expat can be found at www.libexpat.org.
- #
-- expatinc = os.path.join(os.getcwd(), srcdir, 'Modules', 'expat')
-- define_macros = [
-- ('HAVE_EXPAT_CONFIG_H', '1'),
-- ]
-+ # Use system expat
-+ expatinc = '/usr/include'
-+ define_macros = []
-
- exts.append(Extension('pyexpat',
- define_macros = define_macros,
- include_dirs = [expatinc],
-+ libraries = ['expat'],
- sources = ['pyexpat.c',
-- 'expat/xmlparse.c',
-- 'expat/xmlrole.c',
-- 'expat/xmltok.c',
- ],
- ))
-
-@@ -1058,6 +1055,7 @@
- exts.append(Extension('_elementtree',
- define_macros = define_macros,
- include_dirs = [expatinc],
-+ libraries = ['expat'],
- sources = ['_elementtree.c'],
- ))
-