2020-06-28 02:10:13 -07:00
|
|
|
--- setup.py.orig 2020-06-28 02:08:48.000000000 -0700
|
|
|
|
|
+++ setup.py 2020-06-28 02:08:59.000000000 -0700
|
2020-12-10 20:49:39 -08:00
|
|
|
@@ -47,7 +47,7 @@
|
2020-06-28 02:10:13 -07:00
|
|
|
osx_has_gss_framework = False
|
|
|
|
|
if sys.platform == 'darwin':
|
|
|
|
|
mac_ver = [int(v) for v in platform.mac_ver()[0].split('.')]
|
|
|
|
|
- osx_has_gss_framework = (mac_ver >= [10, 7, 0])
|
|
|
|
|
+ osx_has_gss_framework = (mac_ver >= [10, 9, 0])
|
|
|
|
|
|
|
|
|
|
winkrb_path = None
|
|
|
|
|
if os.name == 'nt':
|
2020-12-10 20:49:39 -08:00
|
|
|
@@ -189,7 +189,7 @@
|
2020-06-28 03:04:21 -07:00
|
|
|
if winkrb_path:
|
|
|
|
|
main_path = os.path.join(winkrb_path, 'bin')
|
|
|
|
|
else:
|
|
|
|
|
- main_lib = 'lib%s.so' % opt
|
|
|
|
|
+ main_lib = 'lib%s.dylib' % opt
|
|
|
|
|
for opt in link_args:
|
|
|
|
|
# To support Heimdal on Debian, read the linker path.
|
|
|
|
|
if opt.startswith('-Wl,/'):
|