Added v8 library as a depency for the extractor

This commit is contained in:
DennisOSRM 2012-08-27 16:31:24 +02:00
parent a127c705f2
commit e1fe363268

View File

@ -148,6 +148,9 @@ if not (env.Detect('protoc')):
if not conf.CheckLibWithHeader('stxxl', 'stxxl.h', 'CXX'):
print "stxxl library not found. Exiting"
Exit(-1)
if not conf.CheckLibWithHeader('v8', 'v8.h', 'CXX'):
print "v8 library not found. Exiting"
Exit(-1)
if not conf.CheckLibWithHeader('xml2', 'libxml/xmlreader.h', 'CXX'):
print "libxml2 library or header not found. Exiting"
Exit(-1)