X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=python%2Fpython-2.5.1-db46.patch;fp=python%2Fpython-2.5.1-db46.patch;h=a1896e60a0d0bc3f85891a09e6f8b81f21180c3b;hb=63a2fa13b135c765210e7331113a9bcd99949b3b;hp=0000000000000000000000000000000000000000;hpb=bce5b966788b7d38e7235291e155272f1dc42d6a;p=fedora-mingw.git diff --git a/python/python-2.5.1-db46.patch b/python/python-2.5.1-db46.patch new file mode 100644 index 0000000..a1896e6 --- /dev/null +++ b/python/python-2.5.1-db46.patch @@ -0,0 +1,33 @@ +diff -up Python-2.5.1/setup.py.db46 Python-2.5.1/setup.py +--- Python-2.5.1/setup.py.db46 2007-08-14 12:53:45.000000000 -0400 ++++ Python-2.5.1/setup.py 2007-08-14 14:11:08.000000000 -0400 +@@ -606,9 +606,9 @@ class PyBuildExt(build_ext): + # a release. Most open source OSes come with one or more + # versions of BerkeleyDB already installed. + +- max_db_ver = (4, 5) ++ max_db_ver = (4, 6) + min_db_ver = (3, 3) +- db_setup_debug = False # verbose debug prints from this script? ++ db_setup_debug = True # verbose debug prints from this script? + + # construct a list of paths to look for the header file in on + # top of the normal inc_dirs. +@@ -623,7 +623,7 @@ class PyBuildExt(build_ext): + '/sw/include/db3', + ] + # 4.x minor number specific paths +- for x in (0,1,2,3,4,5): ++ for x in (0,1,2,3,4,5,6): + db_inc_paths.append('/usr/include/db4%d' % x) + db_inc_paths.append('/usr/include/db4.%d' % x) + db_inc_paths.append('/usr/local/BerkeleyDB.4.%d/include' % x) +@@ -646,7 +646,7 @@ class PyBuildExt(build_ext): + for dn in inc_dirs: + std_variants.append(os.path.join(dn, 'db3')) + std_variants.append(os.path.join(dn, 'db4')) +- for x in (0,1,2,3,4): ++ for x in (0,1,2,3,4,5,6): + std_variants.append(os.path.join(dn, "db4%d"%x)) + std_variants.append(os.path.join(dn, "db4.%d"%x)) + for x in (2,3):