~ubuntu-branches/ubuntu/lucid/foomatic-filters/lucid

« back to all changes in this revision

Viewing changes to foomaticrip.h

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2009-06-24 13:59:37 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624135937-ti93e4gt0mxpzhq1
Tags: 4.0.2-0ubuntu1
* New upstream release
   - Use cups-config in the ./configure script to find CUPS-related
     directories
   - Bug fixes
* 01-foomatic-rip-segfault-on-jcl-merging.patch,
  02-foomatic-rip-binary-data-after-pjl-options-corrupted.patch,
  10_config-file-param-reading-gs-command-line-massaging.patch,
  13_foomatic-rip-ps-reader-buffer-overflow.patch,
  15_foomatic-rip-renderer-command-line-massaging.patch,
  17_foomatic-rip-man-page-typos.patch,
  20_foomatic-rip-jcl-segmentation-fault.patch,
  23_prioritize-ppd-options-over-cups-options-on-command-line-fix-custom-options.patch:
  Removed patches with upstream fixes.
* debian/control: Added build dependency on libcups2-dev, as now cups-config
  is used by the ./configure script to find CUPS-related directories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define LOG_FILE "/tmp/foomatic-rip"
21
21
#endif
22
22
 
23
 
/* What 'echo' program to use.  It needs -e and -n.  Linux's builtin
24
 
and regular echo work fine; non-GNU platforms may need to install
25
 
gnu echo and put gecho here or something. */
26
 
#ifndef ECHO
27
 
#define ECHO "echo"
28
 
#endif
29
 
 
30
 
#ifndef GS_PATH
31
 
#define GS_PATH "gs"
32
 
#endif
33
 
 
34
23
 
35
24
/* Constants used by this filter
36
25
 *
119
108
extern char printer_model[];
120
109
extern int dontparse;
121
110
extern int pdfconvertedtops;
 
111
extern char gspath[PATH_MAX];
 
112
extern char echopath[PATH_MAX];
122
113
 
123
114
#endif
124
115