~ubuntu-branches/ubuntu/jaunty/cups/jaunty-proposed

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt, Till Kamppeter, Martin Pitt
  • Date: 2009-02-15 18:39:03 UTC
  • mfrom: (6.1.30 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090215183903-i0nhvqyqj4vyn52a
Tags: 1.3.9-13
[ Till Kamppeter ]
* debian/local/filters/pdf-filters/filter/imagetopdf.c: Added support for
  the new "fit-to-page" option (new, more intuitive name for "fitplot").
* debian/filters/pstopdf: Only apply paper size if the "fitplot" or the
  "fit-to-page" option is set.
* debian/local/filters/cpdftocps: Only the last digit of the number of
  copies was used (LP: #309314).
* debian/local/filters/pdf-filters/pdftopdf/pdftopdf.cxx: Do not preceed the
  PDF output with a newline (LP: #303691). Only impose the page size from
  the PPD file to all pages if the "fitplot" or the "fit-to-page" option is 
  set. This prevented from automatic paper tray switching to the correct paper
  sizes when a multiple-page-size document is printed (partial fix for
  LP: #310575).
* debian/patches/pdftops-cups-1.4.dpatch: Updated from CUPS 1.4 SVN. Contains
  fixes for multiple-page-size document printing (partial fix for
  LP: #310575).
* debian/patches/pdftops-dont_fail_on_cancel.dpatch: Removed, should be
  fixed in the new upstream version of pdftops.

[ Martin Pitt ]
* debian/patches/pdftops-cups-1.4.dpatch: Add definition of
  HAVE_PDFTOPS and CUPS_PDFTOPS, so that the filter actually gets
  again built with pdftops support. (Fixes Till's change from above).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# "$Id: Makefile 7768 2008-07-18 21:03:34Z mike $"
 
2
# "$Id: Makefile 7955 2008-09-17 14:38:31Z mike $"
3
3
#
4
4
#   Top-level Makefile for the Common UNIX Printing System (CUPS).
5
5
#
6
 
#   Copyright 2007 by Apple Inc.
 
6
#   Copyright 2007-2008 by Apple Inc.
7
7
#   Copyright 1997-2007 by Easy Software Products, all rights reserved.
8
8
#
9
9
#   These coded instructions, statements, and computer programs are the
90
90
 
91
91
.PHONY: clang
92
92
clang:
93
 
        if test ! -d clang; then \
94
 
                mkdir clang; \
95
 
        else \
96
 
                rm -rf clang/*; \
97
 
        fi
98
 
        $(MAKE) $(MFLAGS) CC="scan-build -o ../clang $(CC)" \
99
 
                CXX="scan-build -o ../clang $(CXX)" clean all
100
 
        test `ls -1 clang | wc -l` != 0 || exit 1
 
93
        $(RM) -r clang
 
94
        scan-build -k -o `pwd`/clang $(MAKE) $(MFLAGS) \
 
95
                CC=ccc-analyzer CXX=ccc-analyzer clean all
101
96
 
102
97
 
103
98
#
301
296
 
302
297
 
303
298
#
304
 
# End of "$Id: Makefile 7768 2008-07-18 21:03:34Z mike $".
 
299
# End of "$Id: Makefile 7955 2008-09-17 14:38:31Z mike $".
305
300
#