~ubuntu-branches/ubuntu/quantal/gutenprint/quantal

« back to all changes in this revision

Viewing changes to debian/patches/0001-patch-stdio.h-is-required-by-commandtoepson-and-comm.patch

  • Committer: Package Import Robot
  • Author(s): Till Kamppeter
  • Date: 2012-02-14 22:41:51 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120214224151-81lkvr2cow0u55f5
Tags: 5.2.8~pre1-0ubuntu1
* New upstream release
  - Added support for Canon BJC 4550, S330, S520, S530D, S630, S750, S820,
    S830D, S900, S9000, PIXMA mini220, mini320, mini360, i50, i70, i450,
    i455, i470D. i550, i900D, i950, i960, i6100, i6500, i9100, i9900,
    iP3300, iP3500, iP3600, iP4900, iP6210D, iP6220D, iP6310D, iP7100,
    iP7500, iP8100, iP8600, iP9910, MP140, MP190, MP210, MP240, MP375R,
    MP470, MP490, MP530, MP900, MG2100, MG3100, MG4100, MG5300, MG6200,
    MG8200, EPSON ME Office 940FW, PX 204, PX 504A, Stylus CX3900, NX530,
    NX635, SX535WD, Stylus Office BX535WD, BX630FW, BX635FWD, TX620FWD,
    Stylus Photo RX650, WorkForce 545, 630, 645, Stylus Pro 7900/9900
    (Partial -- no orange/green inks).
  - Printers redefined: Canon BJC 3000, S300, S500, S600, S800, PIXMA i80,
    i560, i850, i860, i865, iP2000, iP4100, iP5000, MP600, MP750, MP760,
    MP770, MP780, MP790, MP970
  - Support for the following printers was greatly improved, or tested:
    Canon PIXMA MP700, MP710, MP730, MP740, MP950, MP960, MX340, MX350,
    iP4000, MG5100
  - Canon BJC series printers using photo cartridge have printing modes
    added that will select this cartridge.
  - A crash with the EPSON Stylus Photo R3000 has been fixed.
  - Chinese (Mandarin), Galician, and Ukrainian translations have
    been added.
* debian/patches/0001-patch-stdio.h-is-required-by-commandtoepson-and-comm.patch:
  Removed, applied upstream.
* 0002-genppd-don-t-write-color-profile-information-with-br.patch: Refreshed
  with quilt.
* debian/printer-driver-gutenprint.ppd-updater,
  debian/foomatic-db-gutenprint.ppd-updater: Support also pre-releases with
  "-preX" version number extension.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From bf99e94f197ef5390356e42b7a83e75c1535fb32 Mon Sep 17 00:00:00 2001
2
 
From: Roger Leigh <rleigh@debian.org>
3
 
Date: Thu, 24 Nov 2011 21:40:54 +0000
4
 
Subject: [PATCH 1/2] patch: stdio.h is required by commandtoepson and
5
 
 commandtocanon
6
 
 
7
 
---
8
 
 src/cups/commandtocanon.c |    1 +
9
 
 src/cups/commandtoepson.c |    5 +++--
10
 
 2 files changed, 4 insertions(+), 2 deletions(-)
11
 
 
12
 
diff --git a/src/cups/commandtocanon.c b/src/cups/commandtocanon.c
13
 
index db5bc92..b7b7ef2 100644
14
 
--- a/src/cups/commandtocanon.c
15
 
+++ b/src/cups/commandtocanon.c
16
 
@@ -14,6 +14,7 @@
17
 
 #include <cups/cups.h>
18
 
 #include <ctype.h>
19
 
 #include <stdlib.h>
20
 
+#include <stdio.h>
21
 
 
22
 
 
23
 
 /*
24
 
diff --git a/src/cups/commandtoepson.c b/src/cups/commandtoepson.c
25
 
index b907a2d..e2d03b2 100644
26
 
--- a/src/cups/commandtoepson.c
27
 
+++ b/src/cups/commandtoepson.c
28
 
@@ -1,5 +1,5 @@
29
 
 /*
30
 
- * "$Id: commandtoepson.c,v 1.3 2007/12/23 17:31:51 easysw Exp $"
31
 
+ * "$Id: commandtoepson.c,v 1.4 2011/08/13 16:24:17 rlk Exp $"
32
 
  *
33
 
  *   EPSON ESC/P2 command filter for the Common UNIX Printing System.
34
 
  *
35
 
@@ -32,6 +32,7 @@
36
 
 #include <ctype.h>
37
 
 #include <stdlib.h>
38
 
 #include <string.h>
39
 
+#include <stdio.h>
40
 
 
41
 
 /*
42
 
  * Macros...
43
 
@@ -229,5 +230,5 @@ main(int  argc,             /* I - Number of command-line arguments */
44
 
 
45
 
 
46
 
 /*
47
 
- * End of "$Id: commandtoepson.c,v 1.3 2007/12/23 17:31:51 easysw Exp $".
48
 
+ * End of "$Id: commandtoepson.c,v 1.4 2011/08/13 16:24:17 rlk Exp $".
49
 
  */