-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include <QtGui/qtgui-config.h> to fix flatpak builds #12804
Conversation
@djantti can you confirm this fixes the build error for you? Than let's merge this small regression fix to 2.4. |
@Be-ing has confirmed this fixes the flatpack buil error. |
@@ -1,5 +1,7 @@ | |||
#pragma once | |||
|
|||
#include <QtGui/qtguiglobal.h> // for QT_NO_OPENGL and QT_OPENGL_ES_2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include <QtGui/qtguiglobal.h> // for QT_NO_OPENGL and QT_OPENGL_ES_2 | |
// This is where QT_OPENGL_ES_2 may be defined. | |
#include <QtGui/qtgui-config.h> |
This more directly gets at what is needed here. I have confirmed it still builds an aarch64 Flatpak.
Excellent work! This fixes AArch64 flatpak build for me too. |
Done |
This aims to fix #12802