summaryrefslogtreecommitdiffstats
path: root/src/plugins/printsupport/cups/qcupsprintersupport_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-06-11 17:36:31 +0200
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-06-18 14:52:21 +0000
commit5867e0a7ab125004bfae74d668c2ab97786c107c (patch)
tree1969a83974e5df322bdbe6f41a0a258e979fecb8 /src/plugins/printsupport/cups/qcupsprintersupport_p.h
parentc0eafb9d75b6e24c03cde848b6482d0fcad9ee31 (diff)
Don't build CUPS related code if QT_NO_CUPS is set.
Various related classes aren't built in this case, so the build fails if we try to build the plugin or the widget. Change-Id: Ia3f8651f172bc3c4c643fb2521601683b403eadc Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by: Andy Shaw <andy.shaw@theqtcompany.com>
Diffstat (limited to 'src/plugins/printsupport/cups/qcupsprintersupport_p.h')
-rw-r--r--src/plugins/printsupport/cups/qcupsprintersupport_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/printsupport/cups/qcupsprintersupport_p.h b/src/plugins/printsupport/cups/qcupsprintersupport_p.h
index ea913deeaa..170daa9d3b 100644
--- a/src/plugins/printsupport/cups/qcupsprintersupport_p.h
+++ b/src/plugins/printsupport/cups/qcupsprintersupport_p.h
@@ -48,7 +48,7 @@
#include <qpa/qplatformprintersupport.h>
-#ifndef QT_NO_PRINTER
+#if !defined(QT_NO_PRINTER) && !defined(QT_NO_CUPS)
#include <QtCore/qstringlist.h>
@@ -73,5 +73,5 @@ private:
QT_END_NAMESPACE
-#endif // QT_NO_PRINTER
+#endif // !defined(QT_NO_PRINTER) && !defined(QT_NO_CUPS)
#endif // QCUPSPRINTERSUPPORT_H