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

« back to all changes in this revision

Viewing changes to config-scripts/cups-network.m4

  • 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
dnl
2
 
dnl "$Id: cups-network.m4 7140 2007-12-19 01:47:57Z mike $"
 
2
dnl "$Id: cups-network.m4 7919 2008-09-09 22:03:27Z mike $"
3
3
dnl
4
4
dnl   Networking stuff for the Common UNIX Printing System (CUPS).
5
5
dnl
6
 
dnl   Copyright 2007 by Apple Inc.
 
6
dnl   Copyright 2007-2008 by Apple Inc.
7
7
dnl   Copyright 1997-2005 by Easy Software Products, all rights reserved.
8
8
dnl
9
9
dnl   These coded instructions, statements, and computer programs are the
13
13
dnl   file is missing or damaged, see the license at "http://www.cups.org/".
14
14
dnl
15
15
 
 
16
AC_CHECK_HEADER(resolv.h,AC_DEFINE(HAVE_RESOLV_H))
16
17
AC_SEARCH_LIBS(socket, socket)
17
18
AC_SEARCH_LIBS(gethostbyaddr, nsl)
18
19
AC_SEARCH_LIBS(getifaddrs, nsl, AC_DEFINE(HAVE_GETIFADDRS))
19
20
AC_SEARCH_LIBS(hstrerror, nsl socket resolv, AC_DEFINE(HAVE_HSTRERROR))
20
21
AC_SEARCH_LIBS(rresvport_af, nsl, AC_DEFINE(HAVE_RRESVPORT_AF))
 
22
AC_SEARCH_LIBS(__res_init, resolv bind, AC_DEFINE(HAVE_RES_INIT),
 
23
        AC_SEARCH_LIBS(res_9_init, resolv bind, AC_DEFINE(HAVE_RES_INIT),
 
24
        AC_SEARCH_LIBS(res_init, resolv bind, AC_DEFINE(HAVE_RES_INIT))))
21
25
 
22
26
# Tru64 5.1b leaks file descriptors with these functions; disable until
23
27
# we can come up with a test for this...
66
70
        [#include <netat/appletalk.h>])
67
71
 
68
72
dnl
69
 
dnl End of "$Id: cups-network.m4 7140 2007-12-19 01:47:57Z mike $".
 
73
dnl End of "$Id: cups-network.m4 7919 2008-09-09 22:03:27Z mike $".
70
74
dnl