summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Layt <jlayt@kde.org>2013-12-12 19:13:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-17 13:45:34 +0100
commit3588f05f1010c5ab9663682c71a3e6fe549603a9 (patch)
treedeb366ff18a822bc0f37e2fa4e2240921bb18924
parentf50d46e5eb257528828998a465634d9044cdd17f (diff)
QtPrintSupport - Increase Cups required to 1.4
Change the minimum required version of CUPS to be 1.4, which has been available in most distros since 2009. Note this is only available in RHEL 6 and later, RHEL 5 will no longer be supported for printing. [ChangeLog][QtPrintSupport] CUPS 1.4 is now required for print support on Linux and other *nix platforms. Change-Id: Id9c4c748be6436ccc995da08ff6bb3eeef08c35a Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--config.tests/unix/cups/cups.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.tests/unix/cups/cups.cpp b/config.tests/unix/cups/cups.cpp
index bd8e85a7ce..9170b4003c 100644
--- a/config.tests/unix/cups/cups.cpp
+++ b/config.tests/unix/cups/cups.cpp
@@ -43,7 +43,7 @@
int main(int, char **)
{
- cups_dest_t *d;
- cupsGetDests(&d);
+ // CUPS 1.4 test
+ cupsGetNamedDest(CUPS_HTTP_DEFAULT, NULL, NULL);
return 0;
}