donate_cpu: Improved auto detection of bsd library configuration
This commit is contained in:
parent
922e2b5713
commit
c643e7e7b5
|
@ -15,7 +15,7 @@ import shlex
|
||||||
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
|
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
|
||||||
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
|
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
|
||||||
# changes)
|
# changes)
|
||||||
CLIENT_VERSION = "1.3.5"
|
CLIENT_VERSION = "1.3.6"
|
||||||
|
|
||||||
# Timeout for analysis with Cppcheck in seconds
|
# Timeout for analysis with Cppcheck in seconds
|
||||||
CPPCHECK_TIMEOUT = 60 * 60
|
CPPCHECK_TIMEOUT = 60 * 60
|
||||||
|
@ -458,7 +458,7 @@ def upload_info(package, info_output, server_address):
|
||||||
def get_libraries():
|
def get_libraries():
|
||||||
libraries = ['posix', 'gnu']
|
libraries = ['posix', 'gnu']
|
||||||
library_includes = {'boost': ['<boost/'],
|
library_includes = {'boost': ['<boost/'],
|
||||||
'bsd': ['<sys/queue.h>','<sys/tree.h>','<bsd/'],
|
'bsd': ['<sys/queue.h>','<sys/tree.h>','<bsd/','<fts.h>','<db.h>','<err.h>','<vis.h>'],
|
||||||
'cairo': ['<cairo.h>'],
|
'cairo': ['<cairo.h>'],
|
||||||
'cppunit': ['<cppunit/'],
|
'cppunit': ['<cppunit/'],
|
||||||
'icu': ['<unicode/', '"unicode/'],
|
'icu': ['<unicode/', '"unicode/'],
|
||||||
|
|
Loading…
Reference in New Issue