Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
82a1dc1e
Commit
82a1dc1e
authored
May 09, 2003
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only look for krb5.h if ssl.h was found.
Fixes bug reported in comment to #728322.
parent
98a9943d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
setup.py
setup.py
+5
-4
No files found.
setup.py
View file @
82a1dc1e
...
...
@@ -447,10 +447,11 @@ class PyBuildExt(build_ext):
'/usr/contrib/ssl/include/'
]
)
krb5_h
=
find_file
(
'krb5.h'
,
inc_dirs
,
[
'/usr/kerberos/include'
])
if
krb5_h
:
ssl_incs
+=
krb5_h
if
ssl_incs
is
not
None
:
krb5_h
=
find_file
(
'krb5.h'
,
inc_dirs
,
[
'/usr/kerberos/include'
])
if
krb5_h
:
ssl_incs
+=
krb5_h
ssl_libs
=
find_library_file
(
self
.
compiler
,
'ssl'
,
lib_dirs
,
[
'/usr/local/ssl/lib'
,
'/usr/contrib/ssl/lib/'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment