summaryrefslogtreecommitdiffstats
path: root/abs/core/python/python-2.6-gdbm.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-16 03:46:13 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-16 03:46:13 (GMT)
commit9489701f54d6628e484af822b961c34d7b511e57 (patch)
tree85cc4dbb7d11024b011c57ec11ee7f3707e7d0fd /abs/core/python/python-2.6-gdbm.patch
parentede1a8d31ec57aa9d4850444b4a14ac14734c9b4 (diff)
downloadlinhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.zip
linhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.tar.gz
linhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.tar.bz2
file cleanup
Diffstat (limited to 'abs/core/python/python-2.6-gdbm.patch')
-rw-r--r--abs/core/python/python-2.6-gdbm.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/abs/core/python/python-2.6-gdbm.patch b/abs/core/python/python-2.6-gdbm.patch
deleted file mode 100644
index 0f223f6..0000000
--- a/abs/core/python/python-2.6-gdbm.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur Python-2.6-old/setup.py Python-2.6/setup.py
---- Python-2.6-old/setup.py 2008-09-30 10:15:45.000000000 +1000
-+++ Python-2.6/setup.py 2008-12-07 16:04:01.000000000 +1000
-@@ -1013,7 +1013,7 @@
- if self.compiler.find_library_file(lib_dirs, 'ndbm'):
- ndbm_libs = ['ndbm']
- else:
-- ndbm_libs = []
-+ ndbm_libs = ['gdbm', 'gdbm_compat']
- exts.append( Extension('dbm', ['dbmmodule.c'],
- define_macros=[('HAVE_NDBM_H',None)],
- libraries = ndbm_libs ) )