Codebase list cups-filters / 28624b3
New upstream version 1.16.4 Didier Raboud 6 years ago
7 changed file(s) with 34 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
0 INSTALL - OpenPrinting CUPS Filters v1.16.3 - 2017-08-21
0 INSTALL - OpenPrinting CUPS Filters v1.16.4 - 2017-08-22
11 --------------------------------------------------------
22
33 This file describes how to compile and install OpenPrinting CUPS
0 NEWS - OpenPrinting CUPS Filters v1.16.3 - 2017-08-21
0 NEWS - OpenPrinting CUPS Filters v1.16.4 - 2017-08-22
11 -----------------------------------------------------
2
3 CHANGES IN V1.16.4
4
5 - Build system: Switched over to C11 standard with GNU
6 extensions (-std=gnu11).
7 - Build system: Removed -pedantic flag as it is only needed
8 for compatibility with commercial compilers like the ones of
9 Windows (and we use GNU extensions anyway).
10 - libfontembed, texttopdf: reverted removal of anonymous
11 union.
212
313 CHANGES IN V1.16.3
414
0 README - OpenPrinting CUPS Filters v1.16.3 - 2017-08-21
0 README - OpenPrinting CUPS Filters v1.16.4 - 2017-08-22
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.16.3.
2 # Generated by GNU Autoconf 2.69 for cups-filters 1.16.4.
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.16.3'
590 PACKAGE_STRING='cups-filters 1.16.3'
589 PACKAGE_VERSION='1.16.4'
590 PACKAGE_STRING='cups-filters 1.16.4'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
14941494 # Omit some internal or obsolete options to make the list less imposing.
14951495 # This message is too long to be a string in the A/UX 3.1 sh.
14961496 cat <<_ACEOF
1497 \`configure' configures cups-filters 1.16.3 to adapt to many kinds of systems.
1497 \`configure' configures cups-filters 1.16.4 to adapt to many kinds of systems.
14981498
14991499 Usage: $0 [OPTION]... [VAR=VALUE]...
15001500
15651565
15661566 if test -n "$ac_init_help"; then
15671567 case $ac_init_help in
1568 short | recursive ) echo "Configuration of cups-filters 1.16.3:";;
1568 short | recursive ) echo "Configuration of cups-filters 1.16.4:";;
15691569 esac
15701570 cat <<\_ACEOF
15711571
17921792 test -n "$ac_init_help" && exit $ac_status
17931793 if $ac_init_version; then
17941794 cat <<\_ACEOF
1795 cups-filters configure 1.16.3
1795 cups-filters configure 1.16.4
17961796 generated by GNU Autoconf 2.69
17971797
17981798 Copyright (C) 2012 Free Software Foundation, Inc.
24302430 This file contains any messages produced by compilers while
24312431 running configure, to aid debugging if configure makes a mistake.
24322432
2433 It was created by cups-filters $as_me 1.16.3, which was
2433 It was created by cups-filters $as_me 1.16.4, which was
24342434 generated by GNU Autoconf 2.69. Invocation command line was
24352435
24362436 $ $0 $@
34653465
34663466 # Define the identity of the package.
34673467 PACKAGE='cups-filters'
3468 VERSION='1.16.3'
3468 VERSION='1.16.4'
34693469
34703470
34713471 cat >>confdefs.h <<_ACEOF
2107621076 if test x"$GCC" = "xyes"; then :
2107721077
2107821078 # Be tough with warnings and produce less careless code
21079 CFLAGS="$CFLAGS -Wall -pedantic -std=gnu99"
21080 CXXFLAGS="$CXXFLAGS -Wall -pedantic" # -Weffc++" # TODO: enable when it does not print 1MB of warnings
21079 CFLAGS="$CFLAGS -Wall -std=gnu11"
21080 CXXFLAGS="$CXXFLAGS -Wall " # -Weffc++" # TODO: enable when it does not print 1MB of warnings
2108121081
2108221082 fi
2108321083 CFLAGS="$CFLAGS -D_GNU_SOURCE"
2173821738 # report actual input values of CONFIG_FILES etc. instead of their
2173921739 # values after options handling.
2174021740 ac_log="
21741 This file was extended by cups-filters $as_me 1.16.3, which was
21741 This file was extended by cups-filters $as_me 1.16.4, which was
2174221742 generated by GNU Autoconf 2.69. Invocation command line was
2174321743
2174421744 CONFIG_FILES = $CONFIG_FILES
2180421804 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2180521805 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2180621806 ac_cs_version="\\
21807 cups-filters config.status 1.16.3
21807 cups-filters config.status 1.16.4
2180821808 configured by $0, generated by GNU Autoconf 2.69,
2180921809 with options \\"\$ac_cs_config\\"
2181021810
66 # ====================
77 m4_define([cups_filters_version_major],[1])
88 m4_define([cups_filters_version_minor],[16])
9 m4_define([cups_filters_version_micro],[3])
9 m4_define([cups_filters_version_micro],[4])
1010 m4_define([cups_filters_version],[cups_filters_version_major.cups_filters_version_minor.cups_filters_version_micro])
1111
1212 # =============
769769 ])
770770 AS_IF([test x"$GCC" = "xyes"], [
771771 # Be tough with warnings and produce less careless code
772 CFLAGS="$CFLAGS -Wall -pedantic -std=gnu99"
773 CXXFLAGS="$CXXFLAGS -Wall -pedantic" # -Weffc++" # TODO: enable when it does not print 1MB of warnings
772 CFLAGS="$CFLAGS -Wall -std=gnu11"
773 CXXFLAGS="$CXXFLAGS -Wall " # -Weffc++" # TODO: enable when it does not print 1MB of warnings
774774 ])
775775 CFLAGS="$CFLAGS -D_GNU_SOURCE"
776776 CXXFLAGS="$CXXFLAGS -D_GNU_SOURCE"
175175 for (j = 0; j < NumFonts; j ++)
176176 {
177177 EMB_PARAMS *emb=Fonts[j][i];
178 if (emb->font->fo.fobj) { // already embedded
178 if (emb->font->fobj) { // already embedded
179179 continue;
180180 }
181181 if ( (!emb->subset)||(bits_used(emb->subset,emb->font->sfnt->numGlyphs)) ) {
182 emb->font->fo.fobj=pdfOut_write_font(pdf,emb);
183 assert(emb->font->fo.fobj);
182 emb->font->fobj=pdfOut_write_font(pdf,emb);
183 assert(emb->font->fobj);
184184 }
185185 }
186186 }
198198 for (i = PrettyPrint ? 3 : 1; i >= 0; i --) {
199199 for (j = 0; j < NumFonts; j ++) {
200200 EMB_PARAMS *emb=Fonts[j][i];
201 if (emb->font->fo.fobj) { // used
202 pdfOut_printf(pdf," /%s%02x %d 0 R\n",names[i],j,emb->font->fo.fobj);
201 if (emb->font->fobj) { // used
202 pdfOut_printf(pdf," /%s%02x %d 0 R\n",names[i],j,emb->font->fobj);
203203 }
204204 }
205205 }
99 union {
1010 int fobj;
1111 void *user;
12 } fo;
12 };
1313 };
1414
1515 typedef struct _FONTFILE FONTFILE;