7455bcf
diff -up Python-2.7.6/Lib/distutils/command/install.py.lib64 Python-2.7.6/Lib/distutils/command/install.py
7455bcf
--- Python-2.7.6/Lib/distutils/command/install.py.lib64	2013-11-10 08:36:40.000000000 +0100
7455bcf
+++ Python-2.7.6/Lib/distutils/command/install.py	2014-01-29 13:51:19.779590378 +0100
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',
7455bcf
diff -up Python-2.7.6/Lib/distutils/sysconfig.py.lib64 Python-2.7.6/Lib/distutils/sysconfig.py
7455bcf
--- Python-2.7.6/Lib/distutils/sysconfig.py.lib64	2013-11-10 08:36:40.000000000 +0100
7455bcf
+++ Python-2.7.6/Lib/distutils/sysconfig.py	2014-01-29 13:51:19.779590378 +0100
7455bcf
@@ -119,8 +119,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:
7455bcf
diff -up Python-2.7.6/Lib/site.py.lib64 Python-2.7.6/Lib/site.py
7455bcf
--- Python-2.7.6/Lib/site.py.lib64	2013-11-10 08:36:40.000000000 +0100
7455bcf
+++ Python-2.7.6/Lib/site.py	2014-01-29 13:51:19.779590378 +0100
7455bcf
@@ -288,12 +288,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
7455bcf
diff -up Python-2.7.6/Lib/test/test_site.py.lib64 Python-2.7.6/Lib/test/test_site.py
7455bcf
--- Python-2.7.6/Lib/test/test_site.py.lib64	2013-11-10 08:36:40.000000000 +0100
7455bcf
+++ Python-2.7.6/Lib/test/test_site.py	2014-01-29 13:51:19.780590315 +0100
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):
7455bcf
diff -up Python-2.7.6/Makefile.pre.in.lib64 Python-2.7.6/Makefile.pre.in
7455bcf
--- Python-2.7.6/Makefile.pre.in.lib64	2014-01-29 13:51:19.773590757 +0100
7455bcf
+++ Python-2.7.6/Makefile.pre.in	2014-01-29 13:51:19.780590315 +0100
7455bcf
@@ -106,7 +106,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)
7455bcf
diff -up Python-2.7.6/Modules/Setup.dist.lib64 Python-2.7.6/Modules/Setup.dist
7455bcf
--- Python-2.7.6/Modules/Setup.dist.lib64	2014-01-29 13:51:19.768591073 +0100
7455bcf
+++ Python-2.7.6/Modules/Setup.dist	2014-01-29 13:51:19.781590252 +0100
7455bcf
@@ -416,7 +416,7 @@ gdbm gdbmmodule.c -lgdbm
7455bcf
 # Edit the variables DB and DBLIBVERto point to the db top directory
7455bcf
 # and the subdirectory of PORT where you built it.
7455bcf
 DBINC=/usr/include/libdb
7455bcf
-DBLIB=/usr/lib
7455bcf
+DBLIB=/usr/lib64
7455bcf
 _bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb
7455bcf
 
7455bcf
 # Historical Berkeley DB 1.85
7455bcf
@@ -462,7 +462,7 @@ cPickle cPickle.c
7455bcf
 # Andrew Kuchling's zlib module.
7455bcf
 # This require zlib 1.1.3 (or later).
7455bcf
 # See http://www.gzip.org/zlib/
7455bcf
-zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
7455bcf
+zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib64 -lz
7455bcf
 
7455bcf
 # Interface to the Expat XML parser
7455bcf
 #
7455bcf
diff -up Python-2.7.6/Modules/getpath.c.lib64 Python-2.7.6/Modules/getpath.c
7455bcf
--- Python-2.7.6/Modules/getpath.c.lib64	2013-11-10 08:36:41.000000000 +0100
7455bcf
+++ Python-2.7.6/Modules/getpath.c	2014-01-29 13:51:19.781590252 +0100
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)
7455bcf
@@ -543,7 +543,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];
7455bcf
@@ -553,7 +553,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
 
7455bcf
diff -up Python-2.7.6/setup.py.lib64 Python-2.7.6/setup.py
7455bcf
--- Python-2.7.6/setup.py.lib64	2013-11-10 08:36:41.000000000 +0100
7455bcf
+++ Python-2.7.6/setup.py	2014-01-29 13:56:02.713716528 +0100
7455bcf
@@ -438,7 +438,7 @@ class PyBuildExt(build_ext):
a7ef9c1
     def detect_modules(self):
a7ef9c1
         # Ensure that /usr/local is always used
7455bcf
         if not cross_compiling:
7455bcf
-            add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
7455bcf
+            add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64')
7455bcf
             add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
7455bcf
         if cross_compiling:
7455bcf
             self.add_gcc_paths()
7455bcf
@@ -758,11 +758,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:
7455bcf
@@ -797,8 +797,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