diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-07-21 15:30:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-25 15:33:58 +0100 |
commit | 0eed506cf83265e6f2115d6a1e2af742aab69215 (patch) | |
tree | cb4964b94d5a405d37aef1d2fffd9f7d59f7112a /meta | |
parent | 2d7e6a0a309797f152816f65da5cc86c1b04b710 (diff) | |
download | poky-0eed506cf83265e6f2115d6a1e2af742aab69215.tar.gz |
cups: Upgrade to 1.7.4
Remove patch that was backported
(From OE-Core rev: 984c8d621a2c2315a6c18b0f0b2fc0b380e7ca4d)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/cups/cups.inc | 1 | ||||
-rw-r--r-- | meta/recipes-extended/cups/cups/cups-str4402.patch | 190 | ||||
-rw-r--r-- | meta/recipes-extended/cups/cups_1.7.3.bb | 6 | ||||
-rw-r--r-- | meta/recipes-extended/cups/cups_1.7.4.bb | 6 |
4 files changed, 6 insertions, 197 deletions
diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc index 7e8922b488..6d04a2b18e 100644 --- a/meta/recipes-extended/cups/cups.inc +++ b/meta/recipes-extended/cups/cups.inc | |||
@@ -8,7 +8,6 @@ SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \ | |||
8 | file://0001-don-t-try-to-run-generated-binaries.patch \ | 8 | file://0001-don-t-try-to-run-generated-binaries.patch \ |
9 | file://cups_serverbin.patch \ | 9 | file://cups_serverbin.patch \ |
10 | file://cups-no-gcrypt.patch \ | 10 | file://cups-no-gcrypt.patch \ |
11 | file://cups-str4402.patch \ | ||
12 | " | 11 | " |
13 | 12 | ||
14 | LEAD_SONAME = "libcupsdriver.so" | 13 | LEAD_SONAME = "libcupsdriver.so" |
diff --git a/meta/recipes-extended/cups/cups/cups-str4402.patch b/meta/recipes-extended/cups/cups/cups-str4402.patch deleted file mode 100644 index 69d349cab1..0000000000 --- a/meta/recipes-extended/cups/cups/cups-str4402.patch +++ /dev/null | |||
@@ -1,190 +0,0 @@ | |||
1 | |||
2 | |||
3 | Upstream CUPS issue when building with out dnssd/avahi | ||
4 | |||
5 | https://www.cups.org/str.php?L4408+P-1+S-2+C0+I0+E0+Q | ||
6 | |||
7 | Upstream-Status: Backport [STR #4402] | ||
8 | |||
9 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
10 | |||
11 | --- a/scheduler/dirsvc.c 2014-03-05 13:11:32.000000000 -0800 | ||
12 | +++ b/shceduler/dirsvc.c 2014-05-19 11:33:51.743124614 -0700 | ||
13 | @@ -50,6 +50,9 @@ | ||
14 | static void update_lpd(int onoff); | ||
15 | static void update_smb(int onoff); | ||
16 | |||
17 | +static void deregister_all_printers(int from_callback); | ||
18 | +static void register_all_printers(int from_callback); | ||
19 | + | ||
20 | |||
21 | #if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) | ||
22 | # ifdef __APPLE__ | ||
23 | @@ -60,12 +63,10 @@ | ||
24 | # ifdef HAVE_AVAHI | ||
25 | static void dnssdClientCallback(AvahiClient *c, AvahiClientState state, void *userdata); | ||
26 | # endif /* HAVE_AVAHI */ | ||
27 | -static void dnssdDeregisterAllPrinters(int from_callback); | ||
28 | static void dnssdDeregisterInstance(cupsd_srv_t *srv, int from_callback); | ||
29 | static void dnssdDeregisterPrinter(cupsd_printer_t *p, int clear_name, int from_callback); | ||
30 | static const char *dnssdErrorString(int error); | ||
31 | static void dnssdFreeTxtRecord(cupsd_txt_t *txt); | ||
32 | -static void dnssdRegisterAllPrinters(int from_callback); | ||
33 | # ifdef HAVE_DNSSD | ||
34 | static void dnssdRegisterCallback(DNSServiceRef sdRef, | ||
35 | DNSServiceFlags flags, | ||
36 | @@ -241,7 +242,7 @@ | ||
37 | * Register the individual printers | ||
38 | */ | ||
39 | |||
40 | - dnssdRegisterAllPrinters(0); | ||
41 | + register_all_printers(0); | ||
42 | } | ||
43 | |||
44 | |||
45 | @@ -259,7 +260,7 @@ | ||
46 | * De-register the individual printers | ||
47 | */ | ||
48 | |||
49 | - dnssdDeregisterAllPrinters(0); | ||
50 | + deregister_all_printers(0); | ||
51 | |||
52 | /* | ||
53 | * Shut down browsing sockets... | ||
54 | @@ -579,7 +580,7 @@ | ||
55 | * Register the individual printers | ||
56 | */ | ||
57 | |||
58 | - dnssdRegisterAllPrinters(1); | ||
59 | + register_all_printers(1); | ||
60 | break; | ||
61 | |||
62 | case AVAHI_CLIENT_FAILURE: | ||
63 | @@ -591,7 +592,7 @@ | ||
64 | * Unregister everything and close the client... | ||
65 | */ | ||
66 | |||
67 | - dnssdDeregisterAllPrinters(1); | ||
68 | + deregister_all_printers(1); | ||
69 | dnssdDeregisterInstance(&WebIFSrv, 1); | ||
70 | avahi_client_free(DNSSDClient); | ||
71 | DNSSDClient = NULL; | ||
72 | @@ -631,28 +632,6 @@ | ||
73 | |||
74 | |||
75 | /* | ||
76 | - * 'dnssdDeregisterAllPrinters()' - Deregister all printers. | ||
77 | - */ | ||
78 | - | ||
79 | -static void | ||
80 | -dnssdDeregisterAllPrinters( | ||
81 | - int from_callback) /* I - Deregistering because of callback? */ | ||
82 | -{ | ||
83 | - cupsd_printer_t *p; /* Current printer */ | ||
84 | - | ||
85 | - | ||
86 | - if (!DNSSDMaster) | ||
87 | - return; | ||
88 | - | ||
89 | - for (p = (cupsd_printer_t *)cupsArrayFirst(Printers); | ||
90 | - p; | ||
91 | - p = (cupsd_printer_t *)cupsArrayNext(Printers)) | ||
92 | - if (!(p->type & (CUPS_PRINTER_REMOTE | CUPS_PRINTER_SCANNER))) | ||
93 | - dnssdDeregisterPrinter(p, 1, from_callback); | ||
94 | -} | ||
95 | - | ||
96 | - | ||
97 | -/* | ||
98 | * 'dnssdDeregisterInstance()' - Deregister a DNS-SD service instance. | ||
99 | */ | ||
100 | |||
101 | @@ -858,27 +837,6 @@ | ||
102 | |||
103 | |||
104 | /* | ||
105 | - * 'dnssdRegisterAllPrinters()' - Register all printers. | ||
106 | - */ | ||
107 | - | ||
108 | -static void | ||
109 | -dnssdRegisterAllPrinters(int from_callback) /* I - Called from callback? */ | ||
110 | -{ | ||
111 | - cupsd_printer_t *p; /* Current printer */ | ||
112 | - | ||
113 | - | ||
114 | - if (!DNSSDMaster) | ||
115 | - return; | ||
116 | - | ||
117 | - for (p = (cupsd_printer_t *)cupsArrayFirst(Printers); | ||
118 | - p; | ||
119 | - p = (cupsd_printer_t *)cupsArrayNext(Printers)) | ||
120 | - if (!(p->type & (CUPS_PRINTER_REMOTE | CUPS_PRINTER_SCANNER))) | ||
121 | - dnssdRegisterPrinter(p, from_callback); | ||
122 | -} | ||
123 | - | ||
124 | - | ||
125 | -/* | ||
126 | * 'dnssdRegisterCallback()' - DNSServiceRegister callback. | ||
127 | */ | ||
128 | |||
129 | @@ -1813,6 +1771,61 @@ | ||
130 | } | ||
131 | |||
132 | |||
133 | +/* | ||
134 | + * 'deregister_all_printers()' - Deregister all printers. | ||
135 | + */ | ||
136 | + | ||
137 | +static void | ||
138 | +deregister_all_printers( | ||
139 | + int from_callback) /* I - Deregistering because of callback? */ | ||
140 | +{ | ||
141 | + cupsd_printer_t *p; /* Current printer */ | ||
142 | + | ||
143 | + | ||
144 | +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) | ||
145 | + if (!DNSSDMaster) | ||
146 | + return; | ||
147 | +#endif /* HAVE_DNSSD || HAVE_AVAHI */ | ||
148 | + | ||
149 | + for (p = (cupsd_printer_t *)cupsArrayFirst(Printers); | ||
150 | + p; | ||
151 | + p = (cupsd_printer_t *)cupsArrayNext(Printers)) | ||
152 | + if (!(p->type & (CUPS_PRINTER_REMOTE | CUPS_PRINTER_SCANNER))) | ||
153 | +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) | ||
154 | + dnssdDeregisterPrinter(p, 1, from_callback); | ||
155 | +#else | ||
156 | + cupsdDeregisterPrinter(p, 1); | ||
157 | +#endif /* HAVE_DNSSD || HAVE_AVAHI */ | ||
158 | +} | ||
159 | + | ||
160 | + | ||
161 | +/* | ||
162 | + * 'register_all_printers()' - Register all printers. | ||
163 | + */ | ||
164 | + | ||
165 | +static void | ||
166 | +register_all_printers(int from_callback) /* I - Called from callback? */ | ||
167 | +{ | ||
168 | + cupsd_printer_t *p; /* Current printer */ | ||
169 | + | ||
170 | + | ||
171 | +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) | ||
172 | + if (!DNSSDMaster) | ||
173 | + return; | ||
174 | +#endif /* HAVE_DNSSD || HAVE_AVAHI */ | ||
175 | + | ||
176 | + for (p = (cupsd_printer_t *)cupsArrayFirst(Printers); | ||
177 | + p; | ||
178 | + p = (cupsd_printer_t *)cupsArrayNext(Printers)) | ||
179 | + if (!(p->type & (CUPS_PRINTER_REMOTE | CUPS_PRINTER_SCANNER))) | ||
180 | +#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI) | ||
181 | + dnssdRegisterPrinter(p, from_callback); | ||
182 | +#else | ||
183 | + cupsdRegisterPrinter(p); | ||
184 | +#endif /* HAVE_DNSSD || HAVE_AVAHI */ | ||
185 | +} | ||
186 | + | ||
187 | + | ||
188 | /* | ||
189 | * End of "$Id: dirsvc.c 11688 2014-03-05 21:11:32Z msweet $". | ||
190 | */ | ||
diff --git a/meta/recipes-extended/cups/cups_1.7.3.bb b/meta/recipes-extended/cups/cups_1.7.3.bb deleted file mode 100644 index 2175ba71a2..0000000000 --- a/meta/recipes-extended/cups/cups_1.7.3.bb +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | require cups.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c5e50cb4b8f24b04636b719683a9102d" | ||
4 | |||
5 | SRC_URI[md5sum] = "d498c3020acda0904ab0c13b6389a1ec" | ||
6 | SRC_URI[sha256sum] = "fa989f856d1499169dc442fb2311053ea42fe455ca2721693ba5a9fe4b333e31" | ||
diff --git a/meta/recipes-extended/cups/cups_1.7.4.bb b/meta/recipes-extended/cups/cups_1.7.4.bb new file mode 100644 index 0000000000..9dae986967 --- /dev/null +++ b/meta/recipes-extended/cups/cups_1.7.4.bb | |||
@@ -0,0 +1,6 @@ | |||
1 | require cups.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c5e50cb4b8f24b04636b719683a9102d" | ||
4 | |||
5 | SRC_URI[md5sum] = "1a2295c2b2d2f422db2e50f40ed2fb99" | ||
6 | SRC_URI[sha256sum] = "358fc7f22395a9ba07efcfc0d34a057ab5e9182b6e3297f71263a6b68fb41378" | ||