Package: libqcustomplot-dev
Version: 1.3.2+dfsg1-1
Severity: important

libqcustomplot-dev is not usable in Stretch with qt 5.7.1 since when trying to compile and link an application with this package it gives the following error:

/usr/include/qcustomplot.h:54:28: fatal error: QtPrintSupport: No such file or directory
 #  include <QtPrintSupport>
                            ^
It is a known issue described here:

http://www.qcustomplot.com/index.php/support/forum/184

the fix would only require to change <QtPrintSupport> by <QtPrintSupport/QtPrintSupport> in qcustomplot.h as indicated at the bottom of the above page.
Index: qcustomplot-1.3.2+dfsg1/qcustomplot.h
===================================================================
--- qcustomplot-1.3.2+dfsg1.orig/qcustomplot.h
+++ qcustomplot-1.3.2+dfsg1/qcustomplot.h
@@ -51,7 +51,7 @@
 #  include <QPrintEngine>
 #else
 #  include <QtNumeric>
-#  include <QtPrintSupport>
+#  include <QtPrintSupport/QtPrintSupport>
 #endif
 
 class QCPPainter;

Reply via email to