File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7+ - oldschool_builds
78 pull_request :
8-
9+
910concurrency :
1011 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1112 cancel-in-progress : true
@@ -149,6 +150,7 @@ jobs:
149150 # workaround to allow to find the Qt include dirs for installed standard qt packages
150151 mkdir /usr/include/qt5ln; ln -s /usr/include/qt5 /usr/include/qt5ln/include
151152 export QTDIR=/usr/include/qt5ln
153+ cat /usr/include/qt5/QtCore/QtCore
152154 cd generator
153155 ./pythonqt_generator
154156
@@ -159,6 +161,7 @@ jobs:
159161 path : generated_cpp
160162
161163 macOS :
164+ if : false
162165 strategy :
163166 fail-fast : false
164167 matrix :
@@ -249,6 +252,7 @@ jobs:
249252 path : generated_cpp
250253
251254 windows :
255+ if : false
252256 strategy :
253257 fail-fast : false
254258 matrix :
Original file line number Diff line number Diff line change 8585#define QOPENGLFUNCTIONS_H
8686#define QOPENGLEXTRAFUNCTIONS_H
8787
88+ //#define QT_BOOTSTRAPPED
89+
8890/* This must only be included after 'QT_NO_' definitions have been defined. */
8991#include <QtCore/qglobal.h>
9092
93+ // workaround to avoid compile error for undefined feature, original define:
94+ // #define QT_CONFIG(feature) (1/QT_FEATURE_##feature == 1)
95+ #define QT_CONFIG (feature ) (QT_FEATURE_##feature == 1)
96+
9197/* NOTE: Qt5.12 and later (including Qt6) uses template functions for the
9298 * static implementations of QTimer::singleShot() (the function, not the
9399 * property). The generator does not handle template functions. Defining
You can’t perform that action at this time.
0 commit comments