diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2019-07-13 16:42:01 +0800 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2019-07-13 16:42:01 +0800 |
commit | feb888abcb0f967706126a4b5539269a063db147 (patch) | |
tree | 96c3e0078f1d7ff2ba3e3bf44c0ff8e6a23b24fa /x11-toolkits/qwt5-qt5 | |
parent | f23fb8b1937d58edbd99ea9de54b3003778c2cb3 (diff) | |
download | freebsd-ports-gnome-feb888abcb0f967706126a4b5539269a063db147.tar.gz freebsd-ports-gnome-feb888abcb0f967706126a4b5539269a063db147.tar.zst freebsd-ports-gnome-feb888abcb0f967706126a4b5539269a063db147.zip |
x11-toolkits/qwt5-qt5:
- Add patch to fix build with upcoming Qt 5.13
PR: 238782
Diffstat (limited to 'x11-toolkits/qwt5-qt5')
-rw-r--r-- | x11-toolkits/qwt5-qt5/files/patch-src_qwt__clipper.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11-toolkits/qwt5-qt5/files/patch-src_qwt__clipper.cpp b/x11-toolkits/qwt5-qt5/files/patch-src_qwt__clipper.cpp new file mode 100644 index 000000000000..4f32116cbaf5 --- /dev/null +++ b/x11-toolkits/qwt5-qt5/files/patch-src_qwt__clipper.cpp @@ -0,0 +1,12 @@ +--- src/qwt_clipper.cpp.orig 2018-09-16 20:18:22 UTC ++++ src/qwt_clipper.cpp +@@ -7,7 +7,8 @@ + * modify it under the terms of the Qwt License, Version 1.0 + *****************************************************************************/ + +-#include <qrect.h> ++#include <QList> ++#include <QRect> + #include "qwt_math.h" + #include "qwt_clipper.h" + |