diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2018-08-31 01:23:54 +0000 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2018-08-31 01:23:54 +0000 |
commit | 3c995ab200d19d4f5b5e0e325fb08bc2d4713a53 (patch) | |
tree | abe4b0c98f2924f3a0761ad7036b27cb3d09bfc6 /games | |
parent | 687bed07c20d2c498e7ec60a1003ca3c189fdf57 (diff) | |
download | ports-3c995ab200d19d4f5b5e0e325fb08bc2d4713a53.tar.gz ports-3c995ab200d19d4f5b5e0e325fb08bc2d4713a53.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/chessx/files/patch-src_dialogs_preferences.cpp | 12 | ||||
-rw-r--r-- | games/chessx/files/patch-src_dialogs_savedialog.cpp | 12 | ||||
-rw-r--r-- | games/chessx/files/patch-src_gui_gamewindow.cpp | 12 |
3 files changed, 36 insertions, 0 deletions
diff --git a/games/chessx/files/patch-src_dialogs_preferences.cpp b/games/chessx/files/patch-src_dialogs_preferences.cpp new file mode 100644 index 000000000000..19f9e30aedf2 --- /dev/null +++ b/games/chessx/files/patch-src_dialogs_preferences.cpp @@ -0,0 +1,12 @@ +Fix build with Qt 5.11 + +--- src/dialogs/preferences.cpp.orig 2018-08-31 00:53:54 UTC ++++ src/dialogs/preferences.cpp +@@ -21,6 +21,7 @@ + #include "engineoptiondialog.h" + #include "downloadmanager.h" + ++#include <QAction> + #include <QCheckBox> + #include <QColorDialog> + #include <QComboBox> diff --git a/games/chessx/files/patch-src_dialogs_savedialog.cpp b/games/chessx/files/patch-src_dialogs_savedialog.cpp new file mode 100644 index 000000000000..ce015010322b --- /dev/null +++ b/games/chessx/files/patch-src_dialogs_savedialog.cpp @@ -0,0 +1,12 @@ +Fix build with Qt 5.11 + +--- src/dialogs/savedialog.cpp.orig 2018-08-31 00:54:35 UTC ++++ src/dialogs/savedialog.cpp +@@ -22,6 +22,7 @@ + #include "settings.h" + #include "tags.h" + ++#include <QButtonGroup> + #include <QLineEdit> + #include <QCompleter> + diff --git a/games/chessx/files/patch-src_gui_gamewindow.cpp b/games/chessx/files/patch-src_gui_gamewindow.cpp new file mode 100644 index 000000000000..8c5b1cde81c2 --- /dev/null +++ b/games/chessx/files/patch-src_gui_gamewindow.cpp @@ -0,0 +1,12 @@ +Fix build with Qt 5.11 + +--- src/gui/gamewindow.cpp.orig 2018-08-31 00:55:39 UTC ++++ src/gui/gamewindow.cpp +@@ -8,6 +8,7 @@ + #include "nag.h" + #include "settings.h" + ++#include <QAction> + #include <QToolButton> + + #if defined(_MSC_VER) && defined(_DEBUG) |