b0a6ae1
diff -up Python-2.7.3/Lib/distutils/command/install.py.lib64 Python-2.7.3/Lib/distutils/command/install.py
b0a6ae1
--- Python-2.7.3/Lib/distutils/command/install.py.lib64	2012-04-09 19:07:29.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Lib/distutils/command/install.py	2012-04-11 17:56:41.848587174 -0400
a7ef9c1
@@ -42,14 +42,14 @@ else:
60b7a5f
 INSTALL_SCHEMES = {
60b7a5f
     'unix_prefix': {
60b7a5f
         'purelib': '$base/lib/python$py_version_short/site-packages',
60b7a5f
-        'platlib': '$platbase/lib/python$py_version_short/site-packages',
60b7a5f
+        'platlib': '$platbase/lib64/python$py_version_short/site-packages',
60b7a5f
         'headers': '$base/include/python$py_version_short/$dist_name',
60b7a5f
         'scripts': '$base/bin',
60b7a5f
         'data'   : '$base',
60b7a5f
         },
60b7a5f
     'unix_home': {
60b7a5f
         'purelib': '$base/lib/python',
60b7a5f
-        'platlib': '$base/lib/python',
60b7a5f
+        'platlib': '$base/lib64/python',
60b7a5f
         'headers': '$base/include/python/$dist_name',
60b7a5f
         'scripts': '$base/bin',
60b7a5f
         'data'   : '$base',
b0a6ae1
diff -up Python-2.7.3/Lib/distutils/sysconfig.py.lib64 Python-2.7.3/Lib/distutils/sysconfig.py
b0a6ae1
--- Python-2.7.3/Lib/distutils/sysconfig.py.lib64	2012-04-09 19:07:29.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Lib/distutils/sysconfig.py	2012-04-11 17:56:41.849587162 -0400
c6247fd
@@ -114,8 +114,12 @@ def get_python_lib(plat_specific=0, stan
60b7a5f
         prefix = plat_specific and EXEC_PREFIX or PREFIX
60b7a5f
 
60b7a5f
     if os.name == "posix":
60b7a5f
+        if plat_specific or standard_lib:
60b7a5f
+            lib = "lib64"
60b7a5f
+        else:
60b7a5f
+            lib = "lib"
60b7a5f
         libpython = os.path.join(prefix,
60b7a5f
-                                 "lib", "python" + get_python_version())
60b7a5f
+                                 lib, "python" + get_python_version())
60b7a5f
         if standard_lib:
60b7a5f
             return libpython
60b7a5f
         else:
b0a6ae1
diff -up Python-2.7.3/Lib/site.py.lib64 Python-2.7.3/Lib/site.py
b0a6ae1
--- Python-2.7.3/Lib/site.py.lib64	2012-04-09 19:07:31.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Lib/site.py	2012-04-11 17:56:41.850587149 -0400
b0a6ae1
@@ -300,12 +300,16 @@ def getsitepackages():
a7ef9c1
         if sys.platform in ('os2emx', 'riscos'):
c6247fd
             sitepackages.append(os.path.join(prefix, "Lib", "site-packages"))
a7ef9c1
         elif os.sep == '/':
c6247fd
+            sitepackages.append(os.path.join(prefix, "lib64",
a7ef9c1
+                                        "python" + sys.version[:3],
a7ef9c1
+                                        "site-packages"))
c6247fd
             sitepackages.append(os.path.join(prefix, "lib",
a7ef9c1
                                         "python" + sys.version[:3],
a7ef9c1
                                         "site-packages"))
c6247fd
             sitepackages.append(os.path.join(prefix, "lib", "site-python"))
a7ef9c1
         else:
c6247fd
             sitepackages.append(prefix)
c6247fd
+            sitepackages.append(os.path.join(prefix, "lib64", "site-packages"))
c6247fd
             sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
a7ef9c1
         if sys.platform == "darwin":
c6247fd
             # for framework builds *only* we add the standard Apple
b0a6ae1
diff -up Python-2.7.3/Lib/test/test_site.py.lib64 Python-2.7.3/Lib/test/test_site.py
b0a6ae1
--- Python-2.7.3/Lib/test/test_site.py.lib64	2012-04-09 19:07:32.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Lib/test/test_site.py	2012-04-11 17:58:52.981947780 -0400
b0a6ae1
@@ -241,17 +241,20 @@ class HelperFunctionsTests(unittest.Test
b0a6ae1
             self.assertEqual(dirs[2], wanted)
5810c5d
         elif os.sep == '/':
b0a6ae1
             # OS X non-framwework builds, Linux, FreeBSD, etc
4b97eeb
-            self.assertEqual(len(dirs), 2)
b0a6ae1
-            wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
b0a6ae1
+            self.assertEqual(len(dirs), 3)
5810c5d
+            wanted = os.path.join('xoxo', 'lib64', 'python' + sys.version[:3],
4b97eeb
                                   'site-packages')
b0a6ae1
             self.assertEqual(dirs[0], wanted)
b0a6ae1
-            wanted = os.path.join('xoxo', 'lib', 'site-python')
b0a6ae1
+            wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
b0a6ae1
+                                  'site-packages')
b0a6ae1
             self.assertEqual(dirs[1], wanted)
b0a6ae1
+            wanted = os.path.join('xoxo', 'lib', 'site-python')
b0a6ae1
+            self.assertEqual(dirs[2], wanted)
5810c5d
         else:
b0a6ae1
             # other platforms
b0a6ae1
             self.assertEqual(len(dirs), 2)
b0a6ae1
             self.assertEqual(dirs[0], 'xoxo')
5810c5d
-            wanted = os.path.join('xoxo', 'lib', 'site-packages')
5810c5d
+            wanted = os.path.join('xoxo', 'lib64', 'site-packages')
b0a6ae1
             self.assertEqual(dirs[1], wanted)
5810c5d
 
b0a6ae1
 class PthFile(object):
b0a6ae1
diff -up Python-2.7.3/Makefile.pre.in.lib64 Python-2.7.3/Makefile.pre.in
b0a6ae1
--- Python-2.7.3/Makefile.pre.in.lib64	2012-04-11 17:56:41.829587411 -0400
b0a6ae1
+++ Python-2.7.3/Makefile.pre.in	2012-04-11 17:56:41.852587123 -0400
b0a6ae1
@@ -97,7 +97,7 @@ LIBDIR=		@libdir@
60b7a5f
 MANDIR=		@mandir@
60b7a5f
 INCLUDEDIR=	@includedir@
60b7a5f
 CONFINCLUDEDIR=	$(exec_prefix)/include
60b7a5f
-SCRIPTDIR=	$(prefix)/lib
60b7a5f
+SCRIPTDIR=	$(prefix)/lib64
60b7a5f
 
60b7a5f
 # Detailed destination directories
60b7a5f
 BINLIBDEST=	$(LIBDIR)/python$(VERSION)
b0a6ae1
diff -up Python-2.7.3/Modules/getpath.c.lib64 Python-2.7.3/Modules/getpath.c
b0a6ae1
--- Python-2.7.3/Modules/getpath.c.lib64	2012-04-09 19:07:34.000000000 -0400
b0a6ae1
+++ Python-2.7.3/Modules/getpath.c	2012-04-11 17:56:41.853587110 -0400
60b7a5f
@@ -117,8 +117,8 @@
60b7a5f
 #endif
60b7a5f
 
60b7a5f
 #ifndef PYTHONPATH
60b7a5f
-#define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
60b7a5f
-              EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
60b7a5f
+#define PYTHONPATH PREFIX "/lib64/python" VERSION ":" \
60b7a5f
+              EXEC_PREFIX "/lib64/python" VERSION "/lib-dynload"
60b7a5f
 #endif
60b7a5f
 
60b7a5f
 #ifndef LANDMARK
a7ef9c1
@@ -129,7 +129,7 @@ static char prefix[MAXPATHLEN+1];
60b7a5f
 static char exec_prefix[MAXPATHLEN+1];
60b7a5f
 static char progpath[MAXPATHLEN+1];
60b7a5f
 static char *module_search_path = NULL;
60b7a5f
-static char lib_python[] = "lib/python" VERSION;
60b7a5f
+static char lib_python[] = "lib64/python" VERSION;
60b7a5f
 
60b7a5f
 static void
60b7a5f
 reduce(char *dir)
4b97eeb
@@ -528,7 +528,7 @@ calculate_path(void)
60b7a5f
     }
60b7a5f
     else
60b7a5f
         strncpy(zip_path, PREFIX, MAXPATHLEN);
60b7a5f
-    joinpath(zip_path, "lib/python00.zip");
60b7a5f
+    joinpath(zip_path, "lib64/python00.zip");
c6247fd
     bufsz = strlen(zip_path);   /* Replace "00" with version */
60b7a5f
     zip_path[bufsz - 6] = VERSION[0];
60b7a5f
     zip_path[bufsz - 5] = VERSION[2];
4b97eeb
@@ -538,7 +538,7 @@ calculate_path(void)
60b7a5f
             fprintf(stderr,
60b7a5f
                 "Could not find platform dependent libraries <exec_prefix>\n");
60b7a5f
         strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
60b7a5f
-        joinpath(exec_prefix, "lib/lib-dynload");
60b7a5f
+        joinpath(exec_prefix, "lib64/lib-dynload");
60b7a5f
     }
60b7a5f
     /* If we found EXEC_PREFIX do *not* reduce it!  (Yet.) */
60b7a5f
 
b0a6ae1
diff -up Python-2.7.3/Modules/Setup.dist.lib64 Python-2.7.3/Modules/Setup.dist
b0a6ae1
--- Python-2.7.3/Modules/Setup.dist.lib64	2012-04-11 17:56:41.820587523 -0400
b0a6ae1
+++ Python-2.7.3/Modules/Setup.dist	2012-04-11 17:56:41.854587097 -0400
c6247fd
@@ -413,7 +413,7 @@ gdbm gdbmmodule.c -lgdbm
a7ef9c1
 # and the subdirectory of PORT where you built it.
a7ef9c1
 DBLIBVER=4.7
a7ef9c1
 DBINC=/usr/include/db4
a7ef9c1
-DBLIB=/usr/lib
a7ef9c1
+DBLIB=/usr/lib64
a7ef9c1
 _bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb-$(DBLIBVER)
a7ef9c1
 
a7ef9c1
 # Historical Berkeley DB 1.85
c6247fd
@@ -459,7 +459,7 @@ cPickle cPickle.c
a7ef9c1
 # Andrew Kuchling's zlib module.
a7ef9c1
 # This require zlib 1.1.3 (or later).
a7ef9c1
 # See http://www.gzip.org/zlib/
a7ef9c1
-zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
a7ef9c1
+zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib64 -lz
a7ef9c1
 
a7ef9c1
 # Interface to the Expat XML parser
a7ef9c1
 #
b0a6ae1
diff -up Python-2.7.3/setup.py.lib64 Python-2.7.3/setup.py
b0a6ae1
--- Python-2.7.3/setup.py.lib64	2012-04-09 19:07:36.000000000 -0400
b0a6ae1
+++ Python-2.7.3/setup.py	2012-04-11 17:56:41.856587073 -0400
b0a6ae1
@@ -369,7 +369,7 @@ class PyBuildExt(build_ext):
a7ef9c1
 
a7ef9c1
     def detect_modules(self):
a7ef9c1
         # Ensure that /usr/local is always used
a7ef9c1
-        add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
a7ef9c1
+        add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64')
a7ef9c1
         add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
b0a6ae1
         self.add_multiarch_paths()
a7ef9c1
 
b0a6ae1
@@ -677,11 +677,11 @@ class PyBuildExt(build_ext):
c6247fd
             elif curses_library:
c6247fd
                 readline_libs.append(curses_library)
a7ef9c1
             elif self.compiler.find_library_file(lib_dirs +
c6247fd
-                                                     ['/usr/lib/termcap'],
c6247fd
+                                                     ['/usr/lib64/termcap'],
c6247fd
                                                      'termcap'):
a7ef9c1
                 readline_libs.append('termcap')
a7ef9c1
             exts.append( Extension('readline', ['readline.c'],
a7ef9c1
-                                   library_dirs=['/usr/lib/termcap'],
a7ef9c1
+                                   library_dirs=['/usr/lib64/termcap'],
a7ef9c1
                                    extra_link_args=readline_extra_link_args,
a7ef9c1
                                    libraries=readline_libs) )
a7ef9c1
         else:
b0a6ae1
@@ -715,8 +715,8 @@ class PyBuildExt(build_ext):
a7ef9c1
             if krb5_h:
a7ef9c1
                 ssl_incs += krb5_h
a7ef9c1
         ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
a7ef9c1
-                                     ['/usr/local/ssl/lib',
a7ef9c1
-                                      '/usr/contrib/ssl/lib/'
a7ef9c1
+                                     ['/usr/local/ssl/lib64',
a7ef9c1
+                                      '/usr/contrib/ssl/lib64/'
a7ef9c1
                                      ] )
a7ef9c1
 
a7ef9c1
         if (ssl_incs is not None and