donate-cpu.py: Improve Python library detection.

The official documentation recommends to include the Python C API via
`#include "Python.h"`:
https://docs.python.org/3/c-api/intro.html
And many projects do it exactly this way, that is why the client script
often does not detect the usage of the Python C API.
This commit is contained in:
versat 2019-03-15 16:16:38 +01:00
parent 49f2fd6d4a
commit 4e051ef865
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ import platform
# 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.1.15" CLIENT_VERSION = "1.1.16"
def checkRequirements(): def checkRequirements():
@ -242,7 +242,7 @@ def scanPackage(workPath, cppcheckPath, jobs, fast):
'microsoft_sal': ['<sal.h>'], 'microsoft_sal': ['<sal.h>'],
'motif': ['<X11/', '<Xm/'], 'motif': ['<X11/', '<Xm/'],
#'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'], <- Enable after release of 1.88 #'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'], <- Enable after release of 1.88
'python': ['<Python.h>'], 'python': ['<Python.h>', '"Python.h"'],
'qt': ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'], 'qt': ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'],
'ruby': ['<ruby.h>', '<ruby/'], 'ruby': ['<ruby.h>', '<ruby/'],
'sdl': ['<SDL.h>'], 'sdl': ['<SDL.h>'],