Line 0
Link Here
|
|
|
1 |
--- setup.py.orig 2015-03-27 01:15:10 UTC |
2 |
+++ setup.py |
3 |
@@ -33,7 +33,7 @@ version_string = "1.2.2" |
4 |
|
5 |
description = "Kerberos high-level interface" |
6 |
|
7 |
-long_description = file(joinpath(dirname(__file__), "README.rst")).read() |
8 |
+long_description = open(joinpath(dirname(__file__), "README.rst")).read() |
9 |
|
10 |
url = "http://www.calendarserver.org/" |
11 |
|
12 |
@@ -76,9 +76,9 @@ install_requirements = [] |
13 |
|
14 |
extras_requirements = {} |
15 |
|
16 |
-extra_link_args = getoutput("krb5-config --libs gssapi").split() |
17 |
+extra_link_args = getoutput("%%BINDIR%%/krb5-config --libs gssapi").replace("/usr/lib:", "").split() |
18 |
|
19 |
-extra_compile_args = getoutput("krb5-config --cflags gssapi").split() |
20 |
+extra_compile_args = getoutput("%%BINDIR%%/krb5-config --cflags gssapi").replace("/usr/lib:", "").split() |
21 |
|
22 |
|
23 |
# |