2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
|
|
|
|
index b9f1c6c..7b23714 100644
|
|
|
|
--- a/Lib/distutils/command/install.py
|
|
|
|
+++ b/Lib/distutils/command/install.py
|
2008-11-29 02:03:47 +00:00
|
|
|
@@ -42,14 +42,14 @@ else:
|
2006-12-05 21:34:32 +00:00
|
|
|
INSTALL_SCHEMES = {
|
|
|
|
'unix_prefix': {
|
|
|
|
'purelib': '$base/lib/python$py_version_short/site-packages',
|
|
|
|
- 'platlib': '$platbase/lib/python$py_version_short/site-packages',
|
|
|
|
+ 'platlib': '$platbase/lib64/python$py_version_short/site-packages',
|
|
|
|
'headers': '$base/include/python$py_version_short/$dist_name',
|
|
|
|
'scripts': '$base/bin',
|
|
|
|
'data' : '$base',
|
|
|
|
},
|
|
|
|
'unix_home': {
|
|
|
|
'purelib': '$base/lib/python',
|
|
|
|
- 'platlib': '$base/lib/python',
|
|
|
|
+ 'platlib': '$base/lib64/python',
|
|
|
|
'headers': '$base/include/python/$dist_name',
|
|
|
|
'scripts': '$base/bin',
|
|
|
|
'data' : '$base',
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Lib/distutils/sysconfig.py b/Lib/distutils/sysconfig.py
|
|
|
|
index 068d1ba..3e7f077 100644
|
|
|
|
--- a/Lib/distutils/sysconfig.py
|
|
|
|
+++ b/Lib/distutils/sysconfig.py
|
|
|
|
@@ -119,8 +119,12 @@ def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
|
2006-12-05 21:34:32 +00:00
|
|
|
prefix = plat_specific and EXEC_PREFIX or PREFIX
|
|
|
|
|
|
|
|
if os.name == "posix":
|
|
|
|
+ if plat_specific or standard_lib:
|
|
|
|
+ lib = "lib64"
|
|
|
|
+ else:
|
|
|
|
+ lib = "lib"
|
|
|
|
libpython = os.path.join(prefix,
|
|
|
|
- "lib", "python" + get_python_version())
|
|
|
|
+ lib, "python" + get_python_version())
|
|
|
|
if standard_lib:
|
|
|
|
return libpython
|
|
|
|
else:
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Lib/site.py b/Lib/site.py
|
2017-01-11 19:20:31 +00:00
|
|
|
index c360802..868b7cb 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/Lib/site.py
|
|
|
|
+++ b/Lib/site.py
|
2014-01-29 12:58:24 +00:00
|
|
|
@@ -288,12 +288,16 @@ def getsitepackages():
|
2008-11-29 02:03:47 +00:00
|
|
|
if sys.platform in ('os2emx', 'riscos'):
|
2010-07-21 20:48:17 +00:00
|
|
|
sitepackages.append(os.path.join(prefix, "Lib", "site-packages"))
|
2008-11-29 02:03:47 +00:00
|
|
|
elif os.sep == '/':
|
2010-07-21 20:48:17 +00:00
|
|
|
+ sitepackages.append(os.path.join(prefix, "lib64",
|
2008-11-29 02:03:47 +00:00
|
|
|
+ "python" + sys.version[:3],
|
|
|
|
+ "site-packages"))
|
2010-07-21 20:48:17 +00:00
|
|
|
sitepackages.append(os.path.join(prefix, "lib",
|
2008-11-29 02:03:47 +00:00
|
|
|
"python" + sys.version[:3],
|
|
|
|
"site-packages"))
|
2010-07-21 20:48:17 +00:00
|
|
|
sitepackages.append(os.path.join(prefix, "lib", "site-python"))
|
2008-11-29 02:03:47 +00:00
|
|
|
else:
|
2010-07-21 20:48:17 +00:00
|
|
|
sitepackages.append(prefix)
|
|
|
|
+ sitepackages.append(os.path.join(prefix, "lib64", "site-packages"))
|
|
|
|
sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
|
2017-01-11 19:20:31 +00:00
|
|
|
return sitepackages
|
|
|
|
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
|
2017-01-11 19:20:31 +00:00
|
|
|
index d9a9324..e411e5c 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/Lib/test/test_site.py
|
|
|
|
+++ b/Lib/test/test_site.py
|
2017-01-11 19:20:31 +00:00
|
|
|
@@ -235,17 +235,20 @@ class HelperFunctionsTests(unittest.TestCase):
|
|
|
|
self.assertEqual(dirs[0], wanted)
|
2010-08-18 17:35:32 +00:00
|
|
|
elif os.sep == '/':
|
2017-01-11 19:20:31 +00:00
|
|
|
# OS X, Linux, FreeBSD, etc
|
2010-12-29 03:46:51 +00:00
|
|
|
- self.assertEqual(len(dirs), 2)
|
2012-04-13 14:36:12 +00:00
|
|
|
- wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
|
|
|
|
+ self.assertEqual(len(dirs), 3)
|
2010-08-18 17:35:32 +00:00
|
|
|
+ wanted = os.path.join('xoxo', 'lib64', 'python' + sys.version[:3],
|
2010-12-29 03:46:51 +00:00
|
|
|
'site-packages')
|
2012-04-13 14:36:12 +00:00
|
|
|
self.assertEqual(dirs[0], wanted)
|
|
|
|
- wanted = os.path.join('xoxo', 'lib', 'site-python')
|
|
|
|
+ wanted = os.path.join('xoxo', 'lib', 'python' + sys.version[:3],
|
2016-07-17 20:28:26 +00:00
|
|
|
+ 'site-packages')
|
2012-04-13 14:36:12 +00:00
|
|
|
self.assertEqual(dirs[1], wanted)
|
|
|
|
+ wanted = os.path.join('xoxo', 'lib', 'site-python')
|
|
|
|
+ self.assertEqual(dirs[2], wanted)
|
2010-08-18 17:35:32 +00:00
|
|
|
else:
|
2012-04-13 14:36:12 +00:00
|
|
|
# other platforms
|
|
|
|
self.assertEqual(len(dirs), 2)
|
|
|
|
self.assertEqual(dirs[0], 'xoxo')
|
2010-08-18 17:35:32 +00:00
|
|
|
- wanted = os.path.join('xoxo', 'lib', 'site-packages')
|
|
|
|
+ wanted = os.path.join('xoxo', 'lib64', 'site-packages')
|
2012-04-13 14:36:12 +00:00
|
|
|
self.assertEqual(dirs[1], wanted)
|
2010-08-18 17:35:32 +00:00
|
|
|
|
2012-04-13 14:36:12 +00:00
|
|
|
class PthFile(object):
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Makefile.pre.in b/Makefile.pre.in
|
2017-01-11 19:20:31 +00:00
|
|
|
index adae76b..ecb27f3 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/Makefile.pre.in
|
|
|
|
+++ b/Makefile.pre.in
|
|
|
|
@@ -111,7 +111,7 @@ LIBDIR= @libdir@
|
2006-12-05 21:34:32 +00:00
|
|
|
MANDIR= @mandir@
|
|
|
|
INCLUDEDIR= @includedir@
|
|
|
|
CONFINCLUDEDIR= $(exec_prefix)/include
|
|
|
|
-SCRIPTDIR= $(prefix)/lib
|
|
|
|
+SCRIPTDIR= $(prefix)/lib64
|
|
|
|
|
|
|
|
# Detailed destination directories
|
|
|
|
BINLIBDEST= $(LIBDIR)/python$(VERSION)
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Modules/Setup.dist b/Modules/Setup.dist
|
2017-01-11 19:20:31 +00:00
|
|
|
index fbfa1c1..138fb33 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/Modules/Setup.dist
|
|
|
|
+++ b/Modules/Setup.dist
|
2018-01-17 12:58:28 +00:00
|
|
|
@@ -231,7 +231,7 @@
|
|
|
|
# Some more UNIX dependent modules -- off by default, since these
|
|
|
|
# are not supported by all UNIX systems:
|
|
|
|
|
|
|
|
-nis nismodule.c -lnsl -ltirpc -I/usr/include/tirpc -I/usr/include/nsl -L/usr/lib/nsl
|
|
|
|
+nis nismodule.c -lnsl -ltirpc -I/usr/include/tirpc -I/usr/include/nsl -L/usr/lib64/nsl
|
|
|
|
termios termios.c # Steen Lumholt's termios module
|
|
|
|
resource resource.c # Jeremy Hylton's rlimit interface
|
|
|
|
|
2014-01-29 12:58:24 +00:00
|
|
|
@@ -416,7 +416,7 @@ gdbm gdbmmodule.c -lgdbm
|
|
|
|
# Edit the variables DB and DBLIBVERto point to the db top directory
|
|
|
|
# and the subdirectory of PORT where you built it.
|
|
|
|
DBINC=/usr/include/libdb
|
|
|
|
-DBLIB=/usr/lib
|
|
|
|
+DBLIB=/usr/lib64
|
|
|
|
_bsddb _bsddb.c -I$(DBINC) -L$(DBLIB) -ldb
|
|
|
|
|
|
|
|
# Historical Berkeley DB 1.85
|
|
|
|
@@ -462,7 +462,7 @@ cPickle cPickle.c
|
|
|
|
# Andrew Kuchling's zlib module.
|
|
|
|
# This require zlib 1.1.3 (or later).
|
|
|
|
# See http://www.gzip.org/zlib/
|
|
|
|
-zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
|
|
|
+zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib64 -lz
|
|
|
|
|
|
|
|
# Interface to the Expat XML parser
|
|
|
|
#
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/Modules/getpath.c b/Modules/getpath.c
|
2017-01-11 19:20:31 +00:00
|
|
|
index fd33a01..c5c86fd 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/Modules/getpath.c
|
|
|
|
+++ b/Modules/getpath.c
|
|
|
|
@@ -108,7 +108,7 @@ static char prefix[MAXPATHLEN+1];
|
2006-12-05 21:34:32 +00:00
|
|
|
static char exec_prefix[MAXPATHLEN+1];
|
|
|
|
static char progpath[MAXPATHLEN+1];
|
|
|
|
static char *module_search_path = NULL;
|
|
|
|
-static char lib_python[] = "lib/python" VERSION;
|
|
|
|
+static char lib_python[] = "lib64/python" VERSION;
|
|
|
|
|
|
|
|
static void
|
|
|
|
reduce(char *dir)
|
2017-01-11 19:20:31 +00:00
|
|
|
@@ -548,7 +548,7 @@ calculate_path(void)
|
2006-12-05 21:34:32 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"Could not find platform dependent libraries <exec_prefix>\n");
|
|
|
|
strncpy(exec_prefix, EXEC_PREFIX, MAXPATHLEN);
|
|
|
|
- joinpath(exec_prefix, "lib/lib-dynload");
|
|
|
|
+ joinpath(exec_prefix, "lib64/lib-dynload");
|
|
|
|
}
|
|
|
|
/* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */
|
|
|
|
|
2016-07-17 20:28:26 +00:00
|
|
|
diff --git a/setup.py b/setup.py
|
2017-01-11 19:20:31 +00:00
|
|
|
index 99ac359..859b6c4 100644
|
2016-07-17 20:28:26 +00:00
|
|
|
--- a/setup.py
|
|
|
|
+++ b/setup.py
|
|
|
|
@@ -456,7 +456,7 @@ class PyBuildExt(build_ext):
|
2008-11-29 02:03:47 +00:00
|
|
|
def detect_modules(self):
|
|
|
|
# Ensure that /usr/local is always used
|
2014-01-29 12:58:24 +00:00
|
|
|
if not cross_compiling:
|
|
|
|
- add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
|
|
|
|
+ add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64')
|
|
|
|
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
|
|
|
|
if cross_compiling:
|
|
|
|
self.add_gcc_paths()
|
2016-07-17 20:28:26 +00:00
|
|
|
@@ -782,11 +782,11 @@ class PyBuildExt(build_ext):
|
2010-07-21 20:48:17 +00:00
|
|
|
elif curses_library:
|
|
|
|
readline_libs.append(curses_library)
|
2008-11-29 02:03:47 +00:00
|
|
|
elif self.compiler.find_library_file(lib_dirs +
|
2010-07-21 20:48:17 +00:00
|
|
|
- ['/usr/lib/termcap'],
|
|
|
|
+ ['/usr/lib64/termcap'],
|
|
|
|
'termcap'):
|
2008-11-29 02:03:47 +00:00
|
|
|
readline_libs.append('termcap')
|
|
|
|
exts.append( Extension('readline', ['readline.c'],
|
|
|
|
- library_dirs=['/usr/lib/termcap'],
|
|
|
|
+ library_dirs=['/usr/lib64/termcap'],
|
|
|
|
extra_link_args=readline_extra_link_args,
|
|
|
|
libraries=readline_libs) )
|
|
|
|
else:
|
2016-07-17 20:28:26 +00:00
|
|
|
@@ -821,8 +821,8 @@ class PyBuildExt(build_ext):
|
2008-11-29 02:03:47 +00:00
|
|
|
if krb5_h:
|
|
|
|
ssl_incs += krb5_h
|
|
|
|
ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs,
|
|
|
|
- ['/usr/local/ssl/lib',
|
|
|
|
- '/usr/contrib/ssl/lib/'
|
|
|
|
+ ['/usr/local/ssl/lib64',
|
|
|
|
+ '/usr/contrib/ssl/lib64/'
|
|
|
|
] )
|
|
|
|
|
|
|
|
if (ssl_incs is not None and
|