1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Fix build failure due to cups 1.5 header changes
Author: Michael Gilbert <michael.s.gilbert@gmail.com>
--- a/printing/backend/cups_helper.h 2013-06-24 11:48:42.972039352 +0200
+++ b/printing/backend/cups_helper.h 2013-06-24 11:48:42.964039352 +0200
@@ -6,6 +6,7 @@
#define PRINTING_BACKEND_CUPS_HELPER_H_
#include <cups/cups.h>
+#include <cups/ppd.h>
#include <string>
--- a/chrome/service/cloud_print/print_system_cups.cc 2013-06-24 11:48:42.972039352 +0200
+++ b/chrome/service/cloud_print/print_system_cups.cc 2013-06-24 11:48:42.968039352 +0200
@@ -5,6 +5,7 @@
#include "chrome/service/cloud_print/print_system.h"
#include <cups/cups.h>
+#include <cups/ppd.h>
#include <dlfcn.h>
#include <errno.h>
#include <pthread.h>
|