bpo-33281: Fix ctypes.util.find_library regression on macOS (GH-6625) (GH-6680)

(cherry picked from commit d06d345f04)

Co-authored-by: Ray Donnelly <mingw.android@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-05-01 19:51:31 -07:00 committed by Ned Deily
parent 0596f31902
commit c74ca5396a
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ if os.name == "nt":
return fname return fname
return None return None
if os.name == "posix" and sys.platform == "darwin": elif os.name == "posix" and sys.platform == "darwin":
from ctypes.macholib.dyld import dyld_find as _dyld_find from ctypes.macholib.dyld import dyld_find as _dyld_find
def find_library(name): def find_library(name):
possible = ['lib%s.dylib' % name, possible = ['lib%s.dylib' % name,
@ -80,7 +80,7 @@ if os.name == "posix" and sys.platform == "darwin":
continue continue
return None return None
if sys.platform.startswith("aix"): elif sys.platform.startswith("aix"):
# AIX has two styles of storing shared libraries # AIX has two styles of storing shared libraries
# GNU auto_tools refer to these as svr4 and aix # GNU auto_tools refer to these as svr4 and aix
# svr4 (System V Release 4) is a regular file, often with .so as suffix # svr4 (System V Release 4) is a regular file, often with .so as suffix