diff --git a/examples/examples.pro b/examples/examples.pro
index 253d2ff5b6f997394025c3c00f6ac596c3190a26..45621622ce5d9ab341e803cb946be97e3066c231 100644
--- a/examples/examples.pro
+++ b/examples/examples.pro
@@ -2,7 +2,7 @@ TEMPLATE=subdirs
 
 SUBDIRS += webengine/quicknanobrowser
 
-qtHaveModule(webenginewidgets):equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 2) {
+qtHaveModule(webenginewidgets) {
     SUBDIRS += \
         webenginewidgets/browser \
         webenginewidgets/fancybrowser
diff --git a/src/core/content_browser_client_qt.cpp b/src/core/content_browser_client_qt.cpp
index c70b2993eff87ec123c52ed1f56883b8beabd1eb..641d05011c77699880cfeb0d6e2b74e9a12fa604 100644
--- a/src/core/content_browser_client_qt.cpp
+++ b/src/core/content_browser_client_qt.cpp
@@ -63,7 +63,6 @@
 
 #include <QGuiApplication>
 #include <QtGui/private/qopenglcontext_p.h>
-#include <QtQuick/private/qsgcontext_p.h>
 #include <qpa/qplatformnativeinterface.h>
 
 namespace {
@@ -262,11 +261,7 @@ private:
 void ShareGroupQtQuick::AboutToAddFirstContext()
 {
     // This currently has to be setup by ::main in all applications using QQuickWebEngineView with delegated rendering.
-#if (QT_VERSION < QT_VERSION_CHECK(5, 3, 0))
-    QOpenGLContext *shareContext = QSGContext::sharedOpenGLContext();
-#else
     QOpenGLContext *shareContext = QOpenGLContextPrivate::globalShareContext();
-#endif
     if (!shareContext) {
         qFatal("QWebEngine: OpenGL resource sharing is not set up in QtQuick. Please make sure to call QWebEngine::initialize() or QWebEngineWidgets::initialize() in your main() function.");
     }
diff --git a/src/src.pro b/src/src.pro
index 6d902497f7688ecae0be01e1ccef20c3eb8c40b1..ed402c5824d8e3332c59f33e24c39cdf33421683 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -21,6 +21,6 @@ SUBDIRS += core \
 # Another example of where this could be necessary is to make it easy to build proprietery codecs support.
 !contains(WEBENGINE_CONFIG, no_ui_delegates): SUBDIRS += webengine/ui
 
-qtHaveModule(widgets):equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 2) {
+qtHaveModule(widgets) {
     SUBDIRS += webenginewidgets
 }
diff --git a/src/webengine/api/qtwebengineglobal.cpp b/src/webengine/api/qtwebengineglobal.cpp
index 7340d32d15b7f3db150dfaec5cfce1ad5ffad96f..0a1d6a449987048b3d57f7ffbe99401c42d8cdf4 100644
--- a/src/webengine/api/qtwebengineglobal.cpp
+++ b/src/webengine/api/qtwebengineglobal.cpp
@@ -44,7 +44,6 @@
 #include <QGuiApplication>
 #include <QThread>
 #include <private/qopenglcontext_p.h>
-#include <private/qsgcontext_p.h>
 
 static QOpenGLContext *shareContext;
 
@@ -72,10 +71,6 @@ void QWebEngine::initialize()
     shareContext = new QOpenGLContext;
     shareContext->create();
     qAddPostRoutine(deleteShareContext);
-#if (QT_VERSION < QT_VERSION_CHECK(5, 3, 0))
-    QSGContext::setSharedOpenGLContext(shareContext);
-#else
     QOpenGLContextPrivate::setGlobalShareContext(shareContext);
-#endif
 }
 
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro
index 4c59f400b735526138e4c8caa23270ee0c9d6fc1..f14305f723eee4c90832635d8a5396706e5fbdf6 100644
--- a/tests/auto/auto.pro
+++ b/tests/auto/auto.pro
@@ -2,6 +2,6 @@ TEMPLATE = subdirs
 
 SUBDIRS = quick
 
-qtHaveModule(webenginewidgets):equals(QT_MAJOR_VERSION, 5):greaterThan(QT_MINOR_VERSION, 2) {
+qtHaveModule(webenginewidgets) {
     SUBDIRS += widgets
 }