Add curl, rework Request and RequestManager a bit

This commit is contained in:
Tamás Bálint Misius
2019-03-13 20:57:31 +01:00
committed by jacob1
parent 3d22c1ed4e
commit fc8740f7d5
8 changed files with 547 additions and 1805 deletions

View File

@@ -332,6 +332,10 @@ def findLibs(env, conf):
if not conf.CheckLib(['z', 'zlib']):
FatalError("libz not found or not installed")
#Look for libcurl
if not conf.CheckLib(['curl', 'libcurl']):
FatalError("libcurl not found or not installed")
#Look for pthreads
if not conf.CheckLib(['pthread', 'pthreadVC2']):
FatalError("pthreads development library not found or not installed")