You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
466 B
14 lines
466 B
21 years ago
|
--- pyOpenSSL-0.5.1/setup.py.openssl097 2003-01-03 14:43:15.000000000 -0500
|
||
|
+++ pyOpenSSL-0.5.1/setup.py 2003-01-03 14:43:08.000000000 -0500
|
||
|
@@ -61,6 +61,10 @@
|
||
|
if sys.platform == 'darwin':
|
||
|
IncludeDirs = ['/sw/include']
|
||
|
LibraryDirs = ['/sw/lib']
|
||
|
+# Doesn't make use of pkgconfig easily, so fudge it
|
||
|
+elif os.name == 'posix':
|
||
|
+ IncludeDirs = ['/usr/kerberos/include']
|
||
|
+ LibraryDirs = ['/usr/kerberos/lib']
|
||
|
|
||
|
def mkExtension(name):
|
||
|
import string
|