Kaydet (Commit) 642c8a11 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #926209: Patch to setup.py to run on x86_64 Linux.

üst 2d6783b4
......@@ -485,6 +485,9 @@ Tools/Demos
Build
-----
- In order to find libraries, setup.py now also looks in /lib64, for use
on AMD64.
- Bug #934635: Fixed a bug where the configure script couldn't detect
getaddrinfo() properly if the KAME stack had SCTP support.
......
......@@ -264,7 +264,7 @@ class PyBuildExt(build_ext):
# lib_dirs and inc_dirs are used to search for files;
# if a file is found in one of those directories, it can
# be assumed that no additional -I,-L directives are needed.
lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib']
lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib', '/usr/lib/lib64']
inc_dirs = self.compiler.include_dirs + ['/usr/include']
exts = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment