diff options
author | jlam <jlam> | 2004-01-10 03:32:09 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-01-10 03:32:09 +0000 |
commit | f27518f7881c022645afeb980f17194aed5c41b5 (patch) | |
tree | 6ffec7d85b04b363f7a16198275e5c63bca967fc /print/cups/files | |
parent | eae807aff9f6f08da64710148b9d24186845b844 (diff) | |
download | pkgsrc-f27518f7881c022645afeb980f17194aed5c41b5.tar.gz |
Update print/cups to 1.1.20. Changes from version 1.1.19nb3 include:
Bug fixes:
- The HTTP code did not use a case-insensitive
comparison when checking for the Basic authentication
method (STR #407)
- The cupsaddsmb program didn't export the new CUPS
driver for Windows properly (STR #390)
- The default landscape orientation was not the same as
that defined in the PPD file (STR #397)
- The pdftops filter incorrectly auto-rotated pages when
the user already had specified the proper orientation
(STR #207)
- The scheduler did not reset the group list when
running CGI and filter processes (STR #185)
Enhancements:
- Updated the pdftops filter to use the annotation flags
instead of the subtype to determine whether to print
an annotation (STR #425)
- The pdftops filter no longer needs to create temporary
files with tmpnam (STR #406)
- The scheduler now waits up to 60 seconds before
restarting to allow active jobs to complete printing
and pending requests to be processed (STR #226)
- Added new cupsDoAuthentication(), cupsGetFd(),
cupsGetFile(), cupsPutFd(), and cupsPutFile() functions
to the CUPS API (STR #112)
- The PDF filter always scaled and offset pages; this
caused problems under MacOS X, so now the "fitplot"
option controls whether PDF files are scaled to fit
within the printable area of the page (STR #250)
- Updated the pdftops filter to be based upon Xpdf
2.02pl1 (STR #191)
Diffstat (limited to 'print/cups/files')
-rw-r--r-- | print/cups/files/cupsd.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/print/cups/files/cupsd.sh b/print/cups/files/cupsd.sh index 7c07b802f9f..06b2283cff9 100644 --- a/print/cups/files/cupsd.sh +++ b/print/cups/files/cupsd.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: cupsd.sh,v 1.17 2003/06/04 06:15:38 jlam Exp $ +# $NetBSD: cupsd.sh,v 1.18 2004/01/10 03:32:09 jlam Exp $ # # Common UNIX Printing System daemon # @@ -16,8 +16,7 @@ # # to respond before we declare it not responding; # # this variable is optional and defaults to "60". -if [ -f /etc/rc.subr ] -then +if [ -f /etc/rc.subr ]; then . /etc/rc.subr fi @@ -63,8 +62,7 @@ cupsd_waitcmd() fi } -if [ -f /etc/rc.subr ] -then +if [ -f /etc/rc.subr ]; then load_rc_config $name [ -z "${cupsd_wait}" ] && cupsd_wait=NO [ -z "${cupsd_timeout}" ] && cupsd_timeout=60 |