Codebase list cups-filters / 9788db0
Imported Upstream version 1.0.49 Till Kamppeter 10 years ago
6 changed file(s) with 27 addition(s) and 19 deletion(s). Raw diff Collapse all Expand all
0 INSTALL - OpenPrinting CUPS Filters v1.0.48 - 2014-03-12
0 INSTALL - OpenPrinting CUPS Filters v1.0.49 - 2014-03-24
11 --------------------------------------------------------
22
33 This file describes how to compile and install OpenPrinting CUPS
0 NEWS - OpenPrinting CUPS Filters v1.0.48 - 2014-03-12
0 NEWS - OpenPrinting CUPS Filters v1.0.49 - 2014-03-24
11 -----------------------------------------------------
2
3 CHANGES IN V1.0.49
4
5 - pdftops: Use Poppler also for Toshiba printers (Ubuntu bug
6 #998087).
7 - pdftops: Fixed typo which always made PostScript level 2 being
8 generated when using Poppler's pdftops (Ubuntu bug #1294370).
29
310 CHANGES IN V1.0.48
411
0 README - OpenPrinting CUPS Filters v1.0.48 - 2014-03-12
0 README - OpenPrinting CUPS Filters v1.0.49 - 2014-03-24
11 -------------------------------------------------------
22
33 Looking for compile instructions? Read the file "INSTALL.txt"
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for cups-filters 1.0.48.
2 # Generated by GNU Autoconf 2.69 for cups-filters 1.0.49.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='cups-filters'
588588 PACKAGE_TARNAME='cups-filters'
589 PACKAGE_VERSION='1.0.48'
590 PACKAGE_STRING='cups-filters 1.0.48'
589 PACKAGE_VERSION='1.0.49'
590 PACKAGE_STRING='cups-filters 1.0.49'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
14371437 # Omit some internal or obsolete options to make the list less imposing.
14381438 # This message is too long to be a string in the A/UX 3.1 sh.
14391439 cat <<_ACEOF
1440 \`configure' configures cups-filters 1.0.48 to adapt to many kinds of systems.
1440 \`configure' configures cups-filters 1.0.49 to adapt to many kinds of systems.
14411441
14421442 Usage: $0 [OPTION]... [VAR=VALUE]...
14431443
15071507
15081508 if test -n "$ac_init_help"; then
15091509 case $ac_init_help in
1510 short | recursive ) echo "Configuration of cups-filters 1.0.48:";;
1510 short | recursive ) echo "Configuration of cups-filters 1.0.49:";;
15111511 esac
15121512 cat <<\_ACEOF
15131513
16971697 test -n "$ac_init_help" && exit $ac_status
16981698 if $ac_init_version; then
16991699 cat <<\_ACEOF
1700 cups-filters configure 1.0.48
1700 cups-filters configure 1.0.49
17011701 generated by GNU Autoconf 2.69
17021702
17031703 Copyright (C) 2012 Free Software Foundation, Inc.
23042304 This file contains any messages produced by compilers while
23052305 running configure, to aid debugging if configure makes a mistake.
23062306
2307 It was created by cups-filters $as_me 1.0.48, which was
2307 It was created by cups-filters $as_me 1.0.49, which was
23082308 generated by GNU Autoconf 2.69. Invocation command line was
23092309
23102310 $ $0 $@
32553255
32563256 # Define the identity of the package.
32573257 PACKAGE='cups-filters'
3258 VERSION='1.0.48'
3258 VERSION='1.0.49'
32593259
32603260
32613261 cat >>confdefs.h <<_ACEOF
1933019330 # report actual input values of CONFIG_FILES etc. instead of their
1933119331 # values after options handling.
1933219332 ac_log="
19333 This file was extended by cups-filters $as_me 1.0.48, which was
19333 This file was extended by cups-filters $as_me 1.0.49, which was
1933419334 generated by GNU Autoconf 2.69. Invocation command line was
1933519335
1933619336 CONFIG_FILES = $CONFIG_FILES
1939619396 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1939719397 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1939819398 ac_cs_version="\\
19399 cups-filters config.status 1.0.48
19399 cups-filters config.status 1.0.49
1940019400 configured by $0, generated by GNU Autoconf 2.69,
1940119401 with options \\"\$ac_cs_config\\"
1940219402
66 # ====================
77 m4_define([cups_filters_version_major],[1])
88 m4_define([cups_filters_version_minor],[0])
9 m4_define([cups_filters_version_micro],[48])
9 m4_define([cups_filters_version_micro],[49])
1010 m4_define([cups_filters_version],[cups_filters_version_major.cups_filters_version_minor.cups_filters_version_micro])
1111
1212 # =============
421421 /*
422422 * Select the PDF renderer: Ghostscript (gs), Poppler (pdftops),
423423 * Adobe Reader (arcoread), Poppler with Cairo (pdftocairo), or
424 * Hybrid (hybrid, Poppler for Brother, Minolta, and Konica Minolta and
425 * Ghostscript otherwise)
424 * Hybrid (hybrid, Poppler for Brother, Minolta, Konica Minolta, and
425 * Toshiba and Ghostscript otherwise)
426426 */
427427
428428 if ((val = cupsGetOption("pdftops-renderer", num_options, options)) != NULL)
446446 {
447447 if (make_model[0] &&
448448 (!strncasecmp(make_model, "Brother", 7) ||
449 strcasestr(make_model, "Minolta")))
449 strcasestr(make_model, "Minolta") ||
450 !strncasecmp(make_model, "Toshiba", 7)))
450451 {
451 fprintf(stderr, "DEBUG: Switching to Poppler's pdftops instead of Ghostscript for Brother, Minolta, and Konica Minolta to work around bugs in the printer's PS interpreters\n");
452 fprintf(stderr, "DEBUG: Switching to Poppler's pdftops instead of Ghostscript for Brother, Minolta, Konica Minolta, and Toshiba to work around bugs in the printer's PS interpreters\n");
452453 renderer = PDFTOPS;
453454 }
454455 else
580581 {
581582 /* Do not emit PS Level 3 with Poppler on HP PostScript laser printers
582583 as some do not like it. See https://bugs.launchpad.net/bugs/277404.*/
583 if (make_model[0] ||
584 if (!make_model[0] ||
584585 ((!strncasecmp(make_model, "HP", 2) ||
585586 !strncasecmp(make_model, "Hewlett-Packard", 15)) &&
586587 (strcasestr(make_model, "laserjet"))))