Check for Security.Framework on mac
This commit is contained in:
parent
88064970a3
commit
051d70e6e2
@ -339,6 +339,11 @@ def findLibs(env, conf):
|
|||||||
else:
|
else:
|
||||||
env.ParseConfig("curl-config --libs")
|
env.ParseConfig("curl-config --libs")
|
||||||
|
|
||||||
|
# Needed for ssl. Scons seems incapable of parsing this out of curl-config
|
||||||
|
if platform == "Darwin":
|
||||||
|
if not conf.CheckFramework('Security'):
|
||||||
|
FatalError("Could not find Security.Framework")
|
||||||
|
|
||||||
#Look for pthreads
|
#Look for pthreads
|
||||||
if not conf.CheckLib(['pthread', 'pthreadVC2']):
|
if not conf.CheckLib(['pthread', 'pthreadVC2']):
|
||||||
FatalError("pthreads development library not found or not installed")
|
FatalError("pthreads development library not found or not installed")
|
||||||
|
Loading…
Reference in New Issue
Block a user