Codebase list cups-filters / upstream/1.17.9
New upstream version 1.17.9 Didier Raboud 6 years ago
6 changed file(s) with 31 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
0 INSTALL - OpenPrinting CUPS Filters v1.17.8 - 2017-09-28
0 INSTALL - OpenPrinting CUPS Filters v1.17.9 - 2017-10-05
11 --------------------------------------------------------
22
33 This file describes how to compile and install OpenPrinting CUPS
0 NEWS - OpenPrinting CUPS Filters v1.17.8 - 2017-09-28
0 NEWS - OpenPrinting CUPS Filters v1.17.9 - 2017-10-05
11 -----------------------------------------------------
2
3 CHANGES IN V1.17.9
4
5 - cups-browsed: Applying option defaults from the
6 DefaultOptions directive in cups-browsed.conf got
7 lost. Re-introduced it (Bug #1414).
8 - cups-browsed: Get printer-location field from remote
9 printers. Thanks to Marek Kasik for the patch (Bug #1413).
210
311 CHANGES IN V1.17.8
412
0 README - OpenPrinting CUPS Filters v1.17.8 - 2017-09-28
0 README - OpenPrinting CUPS Filters v1.17.9 - 2017-10-05
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.17.8.
2 # Generated by GNU Autoconf 2.69 for cups-filters 1.17.9.
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.17.8'
590 PACKAGE_STRING='cups-filters 1.17.8'
589 PACKAGE_VERSION='1.17.9'
590 PACKAGE_STRING='cups-filters 1.17.9'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
14961496 # Omit some internal or obsolete options to make the list less imposing.
14971497 # This message is too long to be a string in the A/UX 3.1 sh.
14981498 cat <<_ACEOF
1499 \`configure' configures cups-filters 1.17.8 to adapt to many kinds of systems.
1499 \`configure' configures cups-filters 1.17.9 to adapt to many kinds of systems.
15001500
15011501 Usage: $0 [OPTION]... [VAR=VALUE]...
15021502
15671567
15681568 if test -n "$ac_init_help"; then
15691569 case $ac_init_help in
1570 short | recursive ) echo "Configuration of cups-filters 1.17.8:";;
1570 short | recursive ) echo "Configuration of cups-filters 1.17.9:";;
15711571 esac
15721572 cat <<\_ACEOF
15731573
17961796 test -n "$ac_init_help" && exit $ac_status
17971797 if $ac_init_version; then
17981798 cat <<\_ACEOF
1799 cups-filters configure 1.17.8
1799 cups-filters configure 1.17.9
18001800 generated by GNU Autoconf 2.69
18011801
18021802 Copyright (C) 2012 Free Software Foundation, Inc.
24342434 This file contains any messages produced by compilers while
24352435 running configure, to aid debugging if configure makes a mistake.
24362436
2437 It was created by cups-filters $as_me 1.17.8, which was
2437 It was created by cups-filters $as_me 1.17.9, which was
24382438 generated by GNU Autoconf 2.69. Invocation command line was
24392439
24402440 $ $0 $@
34693469
34703470 # Define the identity of the package.
34713471 PACKAGE='cups-filters'
3472 VERSION='1.17.8'
3472 VERSION='1.17.9'
34733473
34743474
34753475 cat >>confdefs.h <<_ACEOF
2178321783 # report actual input values of CONFIG_FILES etc. instead of their
2178421784 # values after options handling.
2178521785 ac_log="
21786 This file was extended by cups-filters $as_me 1.17.8, which was
21786 This file was extended by cups-filters $as_me 1.17.9, which was
2178721787 generated by GNU Autoconf 2.69. Invocation command line was
2178821788
2178921789 CONFIG_FILES = $CONFIG_FILES
2184921849 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2185021850 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2185121851 ac_cs_version="\\
21852 cups-filters config.status 1.17.8
21852 cups-filters config.status 1.17.9
2185321853 configured by $0, generated by GNU Autoconf 2.69,
2185421854 with options \\"\$ac_cs_config\\"
2185521855
66 # ====================
77 m4_define([cups_filters_version_major],[1])
88 m4_define([cups_filters_version_minor],[17])
9 m4_define([cups_filters_version_micro],[8])
9 m4_define([cups_filters_version_micro],[9])
1010 m4_define([cups_filters_version],[cups_filters_version_major.cups_filters_version_minor.cups_filters_version_micro])
1111
1212 # =============
43554355 } else
43564356 debug_printf("Creating permanent CUPS queue %s.\n",
43574357 p->queue_name);
4358
4359 /* Do we have default option settings in cups-browsed.conf? */
4360 if (DefaultOptions) {
4361 debug_printf("Applying default option settings to printer %s: %s\n",
4362 p->queue_name, DefaultOptions);
4363 p->num_options = cupsParseOptions(DefaultOptions, p->num_options,
4364 &p->options);
4365 }
43584366
43594367 /* Loading saved option settings from last session */
43604368 p->num_options = load_printer_options(p->queue_name, p->num_options,
64896497 browse_poll_get_printers (browsepoll_t *context, http_t *conn)
64906498 {
64916499 static const char * const rattrs[] = { "printer-uri-supported",
6500 "printer-location",
64926501 "printer-info"};
64936502 ipp_t *request, *response = NULL;
64946503 ipp_attribute_t *attr;