Menu

#725 ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory

5.3-fixed
closed-out-of-date
nobody
None
5
2024-11-12
2019-12-16
No

when attempting to compile gutenprint-5.3.3 (and even the older versions) with -with-gimp2 --with-gimp2-as-gutenprint, the compilation fails with this error:

Making all in gimp2
make[3]: Entering directory '/var/tmp/portage/net-print/gutenprint-5.3.3/work/gutenprint-5.3.3/src/gimp2'
x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -march=native -O2 -pipe -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -march=native -O2 -pipe -O3 -c -o print-image-gimp.o print-image-gimp.c
In file included from print_gimp.h:37,
from print-image-gimp.c:27:
../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory
47 | #include <gtk gtk.h="">
| ^~~~~~~~~~~
compilation terminated.</gtk>

imo the reason is that the path for gtk include is missing in the command as the header file is located here:
/usr/include/gtk-2.0/gtk/gtk.h
instead of being it expected in:
/usr/include/gtk/gtk.h

more information to the bug can be found here: https://bugs.gentoo.org/613278 (though it was first reported for version 5.2.12, it still appears in 5.3.3).

Related

Bugs: #725

Discussion

1 2 > >> (Page 1 of 2)
  • Robert Krawitz

    Robert Krawitz - 2019-12-16

    My gtk headers are installed in /usr/include/gtk-2.0.

    If you build it from the source tarball (https://sourceforge.net/projects/gimp-print/files/gutenprint-5.3/5.3.3/gutenprint-5.3.3.tar.xz/download), does it build properly? The problem might be with the emerge (I don't have a Gentoo system myself to check it on).

     
  • Miroslav Šulc

    Miroslav Šulc - 2019-12-16

    thank you for your reply.

    i just tried to build it directly from the sources and the result is the same:
    ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --disable-dependency-tracking --disable-silent-rules --docdir=/usr/share/doc/gutenprint-5.3.3 --htmldir=/usr/share/doc/gutenprint-5.3.3/html --with-sysroot=/ --libdir=/usr/lib64 --enable-test --disable-translated-cups-ppds --enable-libgutenprintui2 --with-gimp2 --with-gimp2-as-gutenprint --with-cups --enable-nls --with-readline --disable-static --enable-cups-ppds --enable-cups-level3-ppds
    ...
    make
    ...
    make[3]: Vstupuje se do adresáře „/home/fordfrog/src/gentoo/gutenprint-5.3.3/src/gimp2“
    x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -c -o print-image-gimp.o print-image-gimp.c
    In file included from print_gimp.h:37,
    from print-image-gimp.c:27:
    ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: Adresář nebo soubor neexistuje
    47 | #include <gtk gtk.h="">
    | ^~~~~~~~~~~
    compilation terminated.</gtk>

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    I just installed it from said sources, and this is what i get:
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    CC libgutenprintui2_la-printrcy.lo
    In file included from printrcy.y:28:0:
    ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory
    #include <gtk gtk.h="">
    ^~~~~~~~~~~
    compilation terminated.
    Makefile:646: recipe for target 'libgutenprintui2_la-printrcy.lo' failed
    make[3]: *** [libgutenprintui2_la-printrcy.lo] Error 1
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    Makefile:481: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src'
    Makefile:597: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3'
    Makefile:528: recipe for target 'all' failed
    make: *** [all] Error 2
    khessels@kees-pc:~/gutenprint-5.3.3$ </gtk>

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    above error was created with following config:
    ./configure --with-gimp2 --with-gimp2-as-gutenprint --enable-user-install --enable-libgutenprintui2 --enable-cups-level3-ppds --enable-cups-ppds --enable-escputil --enable-cups-1_2-enhancements --enable-cups-ppds-at-top-level

    after removing --enable-libgutenprintui2 and configure/make again still the same error
    after removing --enable-escputil still the same error, probably after removing the gimp options it might work, but i need it as a gimp plugin

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    When you run configure at top level, it emits Configuration Summary at the end. Could you post that, please?

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    note even after
    sudo apt-get install build-essential libgtk2.0-dev
    still the same error

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    khessels@kees-pc:~/gutenprint-5.3.3$ ./configure --with-gimp2 --with-gimp2-as-gutenprint --enable-user-install --enable-libgutenprintui2 --enable-cups-level3-ppds --enable-cups-ppds --enable-escputil --enable-cups-1_2-enhancements --enable-cups-ppds-at-top-level
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether make supports nested variables... yes
    checking whether UID '1000' is supported by ustar format... yes
    checking whether GID '1001' is supported by ustar format... yes
    checking how to create a ustar tar archive... gnutar
    checking whether make supports nested variables... (cached) yes
    checking build system type... x86_64-pc-linux-gnu
    checking host system type... x86_64-pc-linux-gnu
    checking how to print strings... printf
    checking whether make supports the include directive... yes (GNU style)
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking whether gcc understands -c and -o together... yes
    checking dependency style of gcc... gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for a working dd... /bin/dd
    checking how to truncate binary pipes... /bin/dd bs=4096 count=1
    checking for mt... mt
    checking if mt is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    ./configure: line 12515: dlopen: command not found
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking for cups-config... /usr/bin/cups-config
    checking whether to whether to build CUPS driver... (automatic)
    checking whether NLS is requested... yes
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking for shared library run path origin... done
    checking for CFPreferencesCopyAppValue... no
    checking for CFLocaleCopyCurrent... no
    checking for GNU gettext in libc... yes
    checking whether to use NLS... yes
    checking where the gettext function comes from... libc
    checking whether to build CUPS PPD files... (automatic)
    checking whether to build CUPS PPD files... yes
    checking whether to build CUPS 1.2 enhancements... yes
    checking whether to build translated CUPS PPD files... yes
    checking whether to build globalized CUPS PPD files... yes
    checking whether to build simplified CUPS PPD files... no
    checking whether to place CUPS PPD files at top level... yes
    checking whether to generate PostScript level 3 PPD files... yes
    checking whether to build a statically-linked cups-genppd and rastertogutenprint. WARNING: Please read the README and NEWS (release notes) CAREFULLY before using --disable-static-genppd!... yes
    checking whether to enable loadable modules... (automatic)
    checking whether to turn on debugging in build... no
    checking whether to turn on profiling in build... no
    checking whether to use readline... yes
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for libusb-1.0... no
    checking whether to install GIMP plugin in home directory... yes
    checking for gimptool-2.0... no
    checking for gtk+-2.0... yes
    checking whether to build GIMP 2.x Print plugin... yes
    checking whether to name GIMP 2.x Print plugin gutenprint (requires GIMP 2.2; normally used with GIMP 2.4 or above)... yes
    checking whether to build Gutenprint GTK+-2.0 user interface library... yes
    checking whether to install sample images... yes
    checking whether to build escputil... yes
    checking whether to build test programs... yes
    checking whether to build Gutenprint documentation... yes
    checking whether to build testpattern generator... yes
    checking for iconv... yes
    checking for library containing strerror... none required
    checking for gawk... (cached) gawk
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking whether gcc understands -c and -o together... (cached) yes
    checking dependency style of gcc... (cached) gcc3
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking whether gcc understands -c and -o together... (cached) yes
    checking dependency style of gcc... (cached) gcc3
    checking whether ln -s works... yes
    checking for flex... no
    checking for lex... no
    checking for bison... no
    checking for byacc... no
    checking for test... /usr/bin/test
    checking for true... /bin/true
    checking for find... /usr/bin/find
    checking for perl... /usr/bin/perl
    checking for glib-mkenums... /usr/bin/glib-mkenums
    checking for convert... /usr/bin/convert
    checking for bash... /bin/bash
    checking for texi2html... no
    checking for dvips... no
    checking for db2pdf... no
    checking for dvipdf... /usr/bin/dvipdf
    checking for db2ps... no
    checking for db2html... no
    checking for doxygen... no
    checking for xz... /usr/bin/xz
    checking for gzip... /bin/gzip
    checking for bzip2... /bin/bzip2
    checking for lrzip... no
    checking for rzip... no
    checking for zpaq... no
    checking for bash... /bin/bash
    checking if gcc supports -Wall... yes
    checking if gcc supports -Wcast-align... yes
    checking if gcc supports -Wstrict-prototypes... no
    checking if gcc supports -Wmissing-prototypes... yes
    checking if gcc supports -Wmissing-declarations... yes
    checking if gcc supports -Wnested-externs... yes
    checking if gcc supports -Wwrite-strings... yes
    checking if gcc supports -Werror-implicit-function-declaration... yes
    checking if gcc supports -Winline... yes
    checking if gcc supports -Wformat=2... yes
    checking if gcc supports -finline-limit=131072... yes
    checking if gcc supports -Wformat... yes
    checking if gcc supports -Werror=format-security... yes
    checking if gcc supports -Wmissing-prototypes... yes
    checking if gcc supports -O3... yes
    checking if gcc supports attribute syntax... yes
    checking for readline in -lreadline... no
    checking for readline in -lreadline... no
    checking for readline in -lreadline... no
    checking for readline in -lreadline... no
    checking for lt_dlopen in -lltdl... yes
    checking for dlopen in -ldl... yes
    checking for pow in -lm... yes
    checking for pow in -lm... (cached) yes
    checking for gzgets in -lz... yes
    checking for cups-config... /usr/bin/cups-config
    checking for ANSI C header files... (cached) yes
    checking getopt.h usability... yes
    checking getopt.h presence... yes
    checking for getopt.h... yes
    checking readline/readline.h usability... no
    checking readline/readline.h presence... no
    checking for readline/readline.h... no
    checking for dlfcn.h... (cached) yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking limits.h usability... yes
    checking limits.h presence... yes
    checking for limits.h... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking ltdl.h usability... yes
    checking ltdl.h presence... yes
    checking for ltdl.h... yes
    checking stdarg.h usability... yes
    checking stdarg.h presence... yes
    checking for stdarg.h... yes
    checking for stdlib.h... (cached) yes
    checking for string.h... (cached) yes
    checking sys/time.h usability... yes
    checking sys/time.h presence... yes
    checking for sys/time.h... yes
    checking for sys/types.h... (cached) yes
    checking time.h usability... yes
    checking time.h presence... yes
    checking for time.h... yes
    checking for unistd.h... (cached) yes
    checking for an ANSI C-conforming const... yes
    checking for inline... inline
    checking for off_t... yes
    checking for size_t... yes
    checking for nanosleep... yes
    checking for poll... yes
    checking for usleep... yes
    checking for getopt_long... yes
    checking for library containing finite... none required
    checking which module system will be used... static
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating doc/Makefile
    config.status: creating doc/gutenprint.dox
    config.status: creating doc/gutenprintui2.dox
    config.status: creating doc/developer/Makefile
    config.status: creating include/Makefile
    config.status: creating include/gutenprint/Makefile
    config.status: creating include/gutenprintui2/Makefile
    config.status: creating include/gutenprint/gutenprint-version.h
    config.status: creating man/Makefile
    config.status: creating man/cups-calibrate.8
    config.status: creating man/cups-genppd.8
    config.status: creating man/cups-genppdupdate.8
    config.status: creating man/escputil.1
    config.status: creating po/Makefile.in
    config.status: creating samples/Makefile
    config.status: creating src/Makefile
    config.status: creating src/cups/Makefile
    config.status: creating src/cups/Info.plist
    config.status: creating src/cups/cups-genppdupdate
    config.status: creating src/cups/test-ppds.test
    config.status: creating src/cups/min-pagesize
    config.status: creating src/escputil/Makefile
    config.status: creating src/testpattern/compare-image-files
    config.status: creating src/testpattern/run-testpattern
    config.status: creating src/testpattern/run-testpattern-1.test
    config.status: creating src/testpattern/run-testpattern-2
    config.status: creating src/testpattern/run-testpattern-2.test
    config.status: creating src/testpattern/compare-checksums
    config.status: creating src/testpattern/compress-checksums
    config.status: creating src/cups/test-rastertogutenprint
    config.status: creating src/cups/test-rastertogutenprint.test
    config.status: creating src/testpattern/Makefile
    config.status: creating src/gimp2/Makefile
    config.status: creating src/main/Makefile
    config.status: creating src/main/gutenprint.pc
    config.status: creating src/xml/Makefile
    config.status: creating src/xml/dither/Makefile
    config.status: creating src/xml/papers/Makefile
    config.status: creating src/xml/printers/Makefile
    config.status: creating src/xml/escp2/Makefile
    config.status: creating src/xml/escp2/media/Makefile
    config.status: creating src/xml/escp2/mediasizes/Makefile
    config.status: creating src/xml/escp2/model/Makefile
    config.status: creating src/xml/escp2/model/base/Makefile
    config.status: creating src/xml/escp2/inputslots/Makefile
    config.status: creating src/xml/escp2/inks/Makefile
    config.status: creating src/xml/escp2/weaves/Makefile
    config.status: creating src/xml/escp2/qualitypresets/Makefile
    config.status: creating src/xml/escp2/resolutions/Makefile
    config.status: creating src/gutenprintui2/Makefile
    config.status: creating src/gutenprintui2/gutenprintui2.pc
    config.status: creating test/Makefile
    config.status: creating test/compress-5level.sh
    config.status: creating test/compress-6level.sh
    config.status: creating test/uncompress-5level.sh
    config.status: creating test/uncompress-6level.sh
    config.status: creating test/parse-bjc
    config.status: creating test/parse-escp2
    config.status: creating test/run-testdither.test
    config.status: creating test/run-weavetest.test
    config.status: creating test/test-curve.test
    config.status: creating scripts/Makefile
    config.status: creating scripts/mkgitlog
    config.status: creating scripts/gversion
    config.status: creating scripts/test-gversion
    config.status: creating scripts/wzpaq
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    rm: cannot remove 'libtoolT': No such file or directory
    config.status: executing po-directories commands
    config.status: creating po/POTFILES
    config.status: creating po/Makefile
    config.status: executing default commands

    Gutenprint Configuration Summary:


    If you have any problems, please report the information below to
    gimp-print-devel@lists.sourceforge.net

    ================================================================
    Release: gutenprint 5.3.3 generated on 25 Aug 2019
    Generated at Sun Feb 9 19:19:51 CST 2020 by khessels

    Features:
    Build CUPS: yes, installing in /usr
    Build CUPS 1.2 enhancements: yes
    Build CUPS PPD files: yes
    Build translated CUPS PPD files: yes
    Build global CUPS PPD files: yes
    Build simplified CUPS PPD files: no
    Install CUPS PPDs at top level: yes
    Generate PS level 3 CUPS PPD files: yes
    Build genppd statically: yes
    Build CUPS dyesub USB backend: no
    Build EPSON inkjet utility: yes
    Build enhanced Print plugin for GIMP: yes
    GIMP plugin will be named: gutenprint
    Install plugin(s) in home directory: yes
    Build test programs: yes
    Build testpattern generator: yes

    Installation summary:
    Installation prefix: /usr/local
    Exec prefix: /usr/local (${prefix})
    Data directory: /usr/local/share/gutenprint
    Library directory: /usr/local/lib/gutenprint (/usr/local/lib/gutenprint)
    Executable directory: /usr/local/bin (/usr/local/bin)
    XML data directory: /usr/local/share/gutenprint/5.3/xml
    Module directory: /usr/local/lib/gutenprint/5.3/modules (/usr/local/lib/gutenprint/5.3/modules)
    Install sample images: yes

    General configuration:
    Configure arguments: --with-gimp2 --with-gimp2-as-gutenprint --enable-user-install --enable-libgutenprintui2 --enable-cups-level3-ppds --enable-cups-ppds --enable-escputil --enable-cups-1_2-enhancements --enable-cups-ppds-at-top-level
    Compiler: gcc
    Compiler Version: gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
    Compiler options: -Disfinite=finite -O3 -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes
    Build static libraries: yes
    Build shared libraries: yes
    Maintainer mode: no
    Use i18n: yes
    Generate profiling information: no
    Generate debugging symbols: no
    Use modules: static
    Use readline libraries: yes
    uname -a output: Linux kees-pc 5.3.0-28-generic #30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
    ================================================================

    Finished configuring. Please review CAREFULLY the configuration summary above.
    This summary is also stored in config.summary
    Type 'make clean' followed by 'make' to build the package
    then 'make install' to install it.

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    What does

    pkg-config gtk+-2.0 --cflags

    return?

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    pkg-config gtk+-2.0 --cflags
    -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16

    I am on neon-development (ubuntu 18.04 with plasma)

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    Could you try

    V=1 make

    ?

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    It won't succeed; I'm interested in seeing the compile line.

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    let me run a make.... 2 min

     
  • Kees Hessels

    Kees Hessels - 2020-02-10
    khessels@kees-pc:~/gutenprint-5.3.3$ make
    make -C src/xml
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in matrix-1x1.xml matrix-2x1.xml matrix-4x1.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml defaultblack.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml f360_ultrachrome_k3v_2.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k34.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v4.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml standard.xml standard_gen0.xml sx445.xml ultrachrome.xml wf40.xml wf500.xml x80.xml xp100.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml cd.xml cd_cutter_roll_feed.xml cd_roll_feed.xml cutter_roll_feed.xml default.xml default-duplex.xml pro3880.xml pro_roll_feed.xml pro_cutter_roll_feed.xml r1800.xml r2400.xml r2880.xml rx680.xml rx700.xml spro5000.xml standard_roll_feed.xml wf7000.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in baseline_300.xml baseline_360.xml bx.xml c1xx.xml c2x.xml c4x.xml c7xx.xml c8x_base.xml c8x.xml cpro.xml photo2.xml picmate.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3_base.xml pro_ultrachrome_k3_cutter.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10_base.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml pro_x000.xml pro_x500.xml pro_x600.xml pro_x700.xml pro_x800.xml pro_x880.xml r200.xml r240.xml r800.xml sc800.xml sp700.xml sp750.xml sp950.xml wf7xxx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in base ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in model_0.xml model_1.xml model_2.xml model_3.xml model_4.xml model_5.xml model_6.xml model_7.xml model_8.xml model_9.xml model_10.xml model_11.xml model_12.xml model_13.xml model_14.xml model_15.xml model_16.xml model_17.xml model_18.xml model_20.xml model_21.xml model_22.xml model_23.xml model_24.xml model_25.xml model_26.xml model_27.xml model_28.xml model_29.xml model_30.xml model_31.xml model_32.xml model_34.xml model_35.xml model_36.xml model_37.xml model_38.xml model_39.xml model_40.xml model_41.xml model_42.xml model_43.xml model_44.xml model_45.xml model_46.xml model_47.xml model_48.xml model_49.xml model_50.xml model_51.xml model_52.xml model_53.xml model_54.xml model_55.xml model_56.xml model_57.xml model_58.xml model_60.xml model_61.xml model_62.xml model_63.xml model_64.xml model_65.xml model_66.xml model_67.xml model_68.xml model_69.xml model_70.xml model_71.xml model_72.xml model_73.xml model_74.xml model_75.xml model_76.xml model_77.xml model_78.xml model_79.xml model_80.xml model_81.xml model_82.xml model_83.xml model_84.xml model_85.xml model_86.xml model_87.xml model_88.xml model_89.xml model_90.xml model_91.xml model_92.xml model_93.xml model_94.xml model_95.xml model_96.xml model_97.xml model_98.xml model_99.xml model_100.xml model_101.xml model_102.xml model_103.xml model_104.xml model_105.xml model_106.xml model_107.xml model_108.xml model_109.xml model_110.xml model_112.xml model_113.xml model_114.xml model_115.xml model_116.xml model_117.xml model_118.xml model_119.xml model_120.xml model_121.xml model_122.xml model_123.xml model_124.xml model_125.xml model_126.xml model_127.xml model_128.xml model_129.xml model_130.xml model_131.xml model_132.xml model_133.xml model_134.xml model_135.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml claria1400.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro3880_ultrachrome_k3v.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml r800.xml standard.xml standard_gen0.xml ultrachrome.xml wf500.xml x80.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in p1_5.xml picturemate.xml prox900.xml standard.xml v2880.xml wf40.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in c8x.xml escp2-i.xml prox600.xml sc480.xml sc680.xml sc740.xml sc860.xml sp700.xml sp720.xml wf6xx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in pro7000.xml pro7500.xml pro7600.xml standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in inks inputslots model media mediasizes qualitypresets resolutions weaves ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml labels.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
      CC       check_duplicate_printers.test.o
    check_duplicate_printers.test.c: In function main’:
    check_duplicate_printers.test.c:37:7: warning: ignoring return value of freopen, declared with attribute warn_unused_result [-Wunused-result]
           freopen(path, "w", stdout);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~
    cd ../../../src/main; \
    make
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
      CC       array.lo
      CC       bit-ops.lo
      CC       channel.lo
      CC       color.lo
      CC       curve.lo
      CC       curve-cache.lo
      CC       dither-ed.lo
      CC       dither-eventone.lo
      CC       dither-inks.lo
      CC       dither-main.lo
      CC       dither-ordered.lo
      CC       dither-very-fast.lo
      CC       dither-predithered.lo
      CC       generic-options.lo
      CC       image.lo
      CC       buffer-image.lo
      CC       module.lo
      CC       path.lo
      CC       print-dither-matrices.lo
      CC       print-list.lo
      CC       print-papers.lo
      CC       print-util.lo
      CC       print-vars.lo
      CC       print-version.lo
      CC       print-weave.lo
      CC       printers.lo
      CC       refcache.lo
      CC       sequence.lo
      CC       string-list.lo
      CC       xml.lo
      CC       mxml-attr.lo
      CC       mxml-file.lo
      CC       mxml-node.lo
      CC       mxml-search.lo
      CC       print-color.lo
      CC       color-conversions.lo
      CC       print-canon.lo
      CC       print-escp2.lo
      CC       escp2-driver.lo
      CC       print-escp2-data.lo
      CC       escp2-channels.lo
      CC       escp2-papers.lo
      CC       escp2-resolutions.lo
      CC       print-lexmark.lo
      CC       print-pcl.lo
      CC       print-dpl.lo
      CC       print-ps.lo
      CC       xmlppd.lo
      CC       print-dyesub.lo
      CC       print-raw.lo
      CCLD     libgutenprint.la
    ar: `u' modifier ignored since `D' is the default (see `U')
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
      CCLD     check_duplicate_printers.test
    STP_MODULE_PATH=../../../src/main/.libs:../../../src/main STP_DATA_PATH=../../../src/xml ./check_duplicate_printers.test
    CHECK_DUPLICATE_PRINTERS
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in canon.xml dpl.xml dyesub.xml escp2.xml lexmark.xml pcl.xml ps.xml raw.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
      CC       extract-strings.o
      CCLD     extract-strings
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in dither escp2 papers printers ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    rm -f xmli18n-tmp.h xmli18n-tmp.h.tmp
    ./extract-strings `cat xml-stamp | sed -e 's;^;./;'` > xmli18n-tmp.h.tmp
    mv xmli18n-tmp.h.tmp xmli18n-tmp.h
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make  all-recursive
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3'
    Making all in include
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in gutenprint
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in src
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src'
    Making all in main
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
    Making all in xml
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[6]: Nothing to be done for 'all-am'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[5]: Nothing to be done for 'all-am'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in escputil
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/escputil'
      CC       d4lib.o
      CC       escputil.o
    escputil.c: In function ‘send_nulls’:
    escputil.c:697:3: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
       (void) write(fd, buf, sizeof(buf));
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      CCLD     escputil
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/escputil'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
      CC       libgutenprintui2_la-printrcy.lo
      CC       libgutenprintui2_la-printrcl.lo
      CC       libgutenprintui2_la-panel.lo
      CC       libgutenprintui2_la-plist.lo
    plist.c: In function ‘stpui_print’:
    plist.c:1627:7: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
           write(syncfd[1], "Done", 5);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1631:6: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
          write(syncfd[1], "Done", 5);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1823:4: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
        (void) read(syncfd[0], buf, 8);
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      CC       libgutenprintui2_la-ui-utils.lo
      CC       libgutenprintui2_la-print-image-thumbnail.lo
      CC       libgutenprintui2_la-curve.lo
      CC       libgutenprintui2_la-gammacurve.lo
      CC       libgutenprintui2_la-typebuiltins.lo
      CCLD     libgutenprintui2.la
    ar: `u' modifier ignored since `D' is the default (see `U')
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    Making all in gimp2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
      CC       print-image-gimp.o
    In file included from print_gimp.h:37:0,
                     from print-image-gimp.c:27:
    ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory
     #include <gtk/gtk.h>
              ^~~~~~~~~~~
    compilation terminated.
    Makefile:549: recipe for target 'print-image-gimp.o' failed
    make[3]: *** [print-image-gimp.o] Error 1
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
    Makefile:481: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src'
    Makefile:597: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3'
    Makefile:528: recipe for target 'all' failed
    make: *** [all] Error 2
    
     

    Last edit: Kees Hessels 2020-02-10
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    V=1 make

    (the V=1 turns on verbosity).

     
  • Kees Hessels

    Kees Hessels - 2020-02-10
    khessels@kees-pc:~/gutenprint-5.3.3$ V=1 make
    make -C src/xml
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in matrix-1x1.xml matrix-2x1.xml matrix-4x1.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml defaultblack.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml f360_ultrachrome_k3v_2.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k34.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v4.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml standard.xml standard_gen0.xml sx445.xml ultrachrome.xml wf40.xml wf500.xml x80.xml xp100.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml cd.xml cd_cutter_roll_feed.xml cd_roll_feed.xml cutter_roll_feed.xml default.xml default-duplex.xml pro3880.xml pro_roll_feed.xml pro_cutter_roll_feed.xml r1800.xml r2400.xml r2880.xml rx680.xml rx700.xml spro5000.xml standard_roll_feed.xml wf7000.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in baseline_300.xml baseline_360.xml bx.xml c1xx.xml c2x.xml c4x.xml c7xx.xml c8x_base.xml c8x.xml cpro.xml photo2.xml picmate.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3_base.xml pro_ultrachrome_k3_cutter.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10_base.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml pro_x000.xml pro_x500.xml pro_x600.xml pro_x700.xml pro_x800.xml pro_x880.xml r200.xml r240.xml r800.xml sc800.xml sp700.xml sp750.xml sp950.xml wf7xxx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in base ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in model_0.xml model_1.xml model_2.xml model_3.xml model_4.xml model_5.xml model_6.xml model_7.xml model_8.xml model_9.xml model_10.xml model_11.xml model_12.xml model_13.xml model_14.xml model_15.xml model_16.xml model_17.xml model_18.xml model_20.xml model_21.xml model_22.xml model_23.xml model_24.xml model_25.xml model_26.xml model_27.xml model_28.xml model_29.xml model_30.xml model_31.xml model_32.xml model_34.xml model_35.xml model_36.xml model_37.xml model_38.xml model_39.xml model_40.xml model_41.xml model_42.xml model_43.xml model_44.xml model_45.xml model_46.xml model_47.xml model_48.xml model_49.xml model_50.xml model_51.xml model_52.xml model_53.xml model_54.xml model_55.xml model_56.xml model_57.xml model_58.xml model_60.xml model_61.xml model_62.xml model_63.xml model_64.xml model_65.xml model_66.xml model_67.xml model_68.xml model_69.xml model_70.xml model_71.xml model_72.xml model_73.xml model_74.xml model_75.xml model_76.xml model_77.xml model_78.xml model_79.xml model_80.xml model_81.xml model_82.xml model_83.xml model_84.xml model_85.xml model_86.xml model_87.xml model_88.xml model_89.xml model_90.xml model_91.xml model_92.xml model_93.xml model_94.xml model_95.xml model_96.xml model_97.xml model_98.xml model_99.xml model_100.xml model_101.xml model_102.xml model_103.xml model_104.xml model_105.xml model_106.xml model_107.xml model_108.xml model_109.xml model_110.xml model_112.xml model_113.xml model_114.xml model_115.xml model_116.xml model_117.xml model_118.xml model_119.xml model_120.xml model_121.xml model_122.xml model_123.xml model_124.xml model_125.xml model_126.xml model_127.xml model_128.xml model_129.xml model_130.xml model_131.xml model_132.xml model_133.xml model_134.xml model_135.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml claria1400.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro3880_ultrachrome_k3v.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml r800.xml standard.xml standard_gen0.xml ultrachrome.xml wf500.xml x80.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in p1_5.xml picturemate.xml prox900.xml standard.xml v2880.xml wf40.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in c8x.xml escp2-i.xml prox600.xml sc480.xml sc680.xml sc740.xml sc860.xml sp700.xml sp720.xml wf6xx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in pro7000.xml pro7500.xml pro7600.xml standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in inks inputslots model media mediasizes qualitypresets resolutions weaves ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml labels.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    gcc -DHAVE_CONFIG_H -I. -I../../..  -I../../../include -I../../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT check_duplicate_printers.test.o -MD -MP -MF .deps/check_duplicate_printers.test.Tpo -c -o check_duplicate_printers.test.o check_duplicate_printers.test.c
    check_duplicate_printers.test.c: In function main’:
    check_duplicate_printers.test.c:37:7: warning: ignoring return value of freopen, declared with attribute warn_unused_result [-Wunused-result]
           freopen(path, "w", stdout);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~
    mv -f .deps/check_duplicate_printers.test.Tpo .deps/check_duplicate_printers.test.Po
    cd ../../../src/main; \
    make
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c -o array.lo array.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c  -fPIC -DPIC -o .libs/array.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c -o array.o >/dev/null 2>&1
    mv -f .deps/array.Tpo .deps/array.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c -o bit-ops.lo bit-ops.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c bit-ops.c  -fPIC -DPIC -o .libs/bit-ops.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c bit-ops.c -o bit-ops.o >/dev/null 2>&1
    mv -f .deps/bit-ops.Tpo .deps/bit-ops.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c -o channel.lo channel.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c channel.c  -fPIC -DPIC -o .libs/channel.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c channel.c -o channel.o >/dev/null 2>&1
    mv -f .deps/channel.Tpo .deps/channel.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c -o color.lo color.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c color.c  -fPIC -DPIC -o .libs/color.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c color.c -o color.o >/dev/null 2>&1
    mv -f .deps/color.Tpo .deps/color.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c -o curve.lo curve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c curve.c  -fPIC -DPIC -o .libs/curve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c curve.c -o curve.o >/dev/null 2>&1
    mv -f .deps/curve.Tpo .deps/curve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c -o curve-cache.lo curve-cache.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c curve-cache.c  -fPIC -DPIC -o .libs/curve-cache.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c curve-cache.c -o curve-cache.o >/dev/null 2>&1
    mv -f .deps/curve-cache.Tpo .deps/curve-cache.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c -o dither-ed.lo dither-ed.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c dither-ed.c  -fPIC -DPIC -o .libs/dither-ed.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c dither-ed.c -o dither-ed.o >/dev/null 2>&1
    mv -f .deps/dither-ed.Tpo .deps/dither-ed.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c -o dither-eventone.lo dither-eventone.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c dither-eventone.c  -fPIC -DPIC -o .libs/dither-eventone.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c dither-eventone.c -o dither-eventone.o >/dev/null 2>&1
    mv -f .deps/dither-eventone.Tpo .deps/dither-eventone.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c -o dither-inks.lo dither-inks.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c dither-inks.c  -fPIC -DPIC -o .libs/dither-inks.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c dither-inks.c -o dither-inks.o >/dev/null 2>&1
    mv -f .deps/dither-inks.Tpo .deps/dither-inks.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c -o dither-main.lo dither-main.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c dither-main.c  -fPIC -DPIC -o .libs/dither-main.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c dither-main.c -o dither-main.o >/dev/null 2>&1
    mv -f .deps/dither-main.Tpo .deps/dither-main.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c -o dither-ordered.lo dither-ordered.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c dither-ordered.c  -fPIC -DPIC -o .libs/dither-ordered.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c dither-ordered.c -o dither-ordered.o >/dev/null 2>&1
    mv -f .deps/dither-ordered.Tpo .deps/dither-ordered.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c -o dither-very-fast.lo dither-very-fast.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c dither-very-fast.c  -fPIC -DPIC -o .libs/dither-very-fast.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c dither-very-fast.c -o dither-very-fast.o >/dev/null 2>&1
    mv -f .deps/dither-very-fast.Tpo .deps/dither-very-fast.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c -o dither-predithered.lo dither-predithered.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c dither-predithered.c  -fPIC -DPIC -o .libs/dither-predithered.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c dither-predithered.c -o dither-predithered.o >/dev/null 2>&1
    mv -f .deps/dither-predithered.Tpo .deps/dither-predithered.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c -o generic-options.lo generic-options.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c generic-options.c  -fPIC -DPIC -o .libs/generic-options.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c generic-options.c -o generic-options.o >/dev/null 2>&1
    mv -f .deps/generic-options.Tpo .deps/generic-options.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c -o image.lo image.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c image.c  -fPIC -DPIC -o .libs/image.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c image.c -o image.o >/dev/null 2>&1
    mv -f .deps/image.Tpo .deps/image.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c -o buffer-image.lo buffer-image.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c buffer-image.c  -fPIC -DPIC -o .libs/buffer-image.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c buffer-image.c -o buffer-image.o >/dev/null 2>&1
    mv -f .deps/buffer-image.Tpo .deps/buffer-image.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c -o module.lo module.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c module.c  -fPIC -DPIC -o .libs/module.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c module.c -o module.o >/dev/null 2>&1
    mv -f .deps/module.Tpo .deps/module.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c -o path.lo path.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c path.c  -fPIC -DPIC -o .libs/path.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c path.c -o path.o >/dev/null 2>&1
    mv -f .deps/path.Tpo .deps/path.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c -o print-dither-matrices.lo print-dither-matrices.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c print-dither-matrices.c  -fPIC -DPIC -o .libs/print-dither-matrices.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c print-dither-matrices.c -o print-dither-matrices.o >/dev/null 2>&1
    mv -f .deps/print-dither-matrices.Tpo .deps/print-dither-matrices.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c -o print-list.lo print-list.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c print-list.c  -fPIC -DPIC -o .libs/print-list.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c print-list.c -o print-list.o >/dev/null 2>&1
    mv -f .deps/print-list.Tpo .deps/print-list.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c -o print-papers.lo print-papers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c print-papers.c  -fPIC -DPIC -o .libs/print-papers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c print-papers.c -o print-papers.o >/dev/null 2>&1
    mv -f .deps/print-papers.Tpo .deps/print-papers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c -o print-util.lo print-util.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c print-util.c  -fPIC -DPIC -o .libs/print-util.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c print-util.c -o print-util.o >/dev/null 2>&1
    mv -f .deps/print-util.Tpo .deps/print-util.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c -o print-vars.lo print-vars.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c print-vars.c  -fPIC -DPIC -o .libs/print-vars.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c print-vars.c -o print-vars.o >/dev/null 2>&1
    mv -f .deps/print-vars.Tpo .deps/print-vars.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c -o print-version.lo print-version.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c print-version.c  -fPIC -DPIC -o .libs/print-version.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c print-version.c -o print-version.o >/dev/null 2>&1
    mv -f .deps/print-version.Tpo .deps/print-version.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c -o print-weave.lo print-weave.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c print-weave.c  -fPIC -DPIC -o .libs/print-weave.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c print-weave.c -o print-weave.o >/dev/null 2>&1
    mv -f .deps/print-weave.Tpo .deps/print-weave.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c -o printers.lo printers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c printers.c  -fPIC -DPIC -o .libs/printers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c printers.c -o printers.o >/dev/null 2>&1
    mv -f .deps/printers.Tpo .deps/printers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c -o refcache.lo refcache.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c refcache.c  -fPIC -DPIC -o .libs/refcache.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c refcache.c -o refcache.o >/dev/null 2>&1
    mv -f .deps/refcache.Tpo .deps/refcache.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c -o sequence.lo sequence.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c sequence.c  -fPIC -DPIC -o .libs/sequence.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c sequence.c -o sequence.o >/dev/null 2>&1
    mv -f .deps/sequence.Tpo .deps/sequence.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c -o string-list.lo string-list.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c string-list.c  -fPIC -DPIC -o .libs/string-list.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c string-list.c -o string-list.o >/dev/null 2>&1
    mv -f .deps/string-list.Tpo .deps/string-list.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c -o xml.lo xml.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c xml.c  -fPIC -DPIC -o .libs/xml.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c xml.c -o xml.o >/dev/null 2>&1
    mv -f .deps/xml.Tpo .deps/xml.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c -o mxml-attr.lo mxml-attr.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c mxml-attr.c  -fPIC -DPIC -o .libs/mxml-attr.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c mxml-attr.c -o mxml-attr.o >/dev/null 2>&1
    mv -f .deps/mxml-attr.Tpo .deps/mxml-attr.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c -o mxml-file.lo mxml-file.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c mxml-file.c  -fPIC -DPIC -o .libs/mxml-file.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c mxml-file.c -o mxml-file.o >/dev/null 2>&1
    mv -f .deps/mxml-file.Tpo .deps/mxml-file.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c -o mxml-node.lo mxml-node.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c mxml-node.c  -fPIC -DPIC -o .libs/mxml-node.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c mxml-node.c -o mxml-node.o >/dev/null 2>&1
    mv -f .deps/mxml-node.Tpo .deps/mxml-node.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c -o mxml-search.lo mxml-search.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c mxml-search.c  -fPIC -DPIC -o .libs/mxml-search.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c mxml-search.c -o mxml-search.o >/dev/null 2>&1
    mv -f .deps/mxml-search.Tpo .deps/mxml-search.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c -o print-color.lo print-color.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c print-color.c  -fPIC -DPIC -o .libs/print-color.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c print-color.c -o print-color.o >/dev/null 2>&1
    mv -f .deps/print-color.Tpo .deps/print-color.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c -o color-conversions.lo color-conversions.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c color-conversions.c  -fPIC -DPIC -o .libs/color-conversions.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c color-conversions.c -o color-conversions.o >/dev/null 2>&1
    mv -f .deps/color-conversions.Tpo .deps/color-conversions.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c -o print-canon.lo print-canon.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c print-canon.c  -fPIC -DPIC -o .libs/print-canon.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c print-canon.c -o print-canon.o >/dev/null 2>&1
    mv -f .deps/print-canon.Tpo .deps/print-canon.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c -o print-escp2.lo print-escp2.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c print-escp2.c  -fPIC -DPIC -o .libs/print-escp2.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c print-escp2.c -o print-escp2.o >/dev/null 2>&1
    mv -f .deps/print-escp2.Tpo .deps/print-escp2.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c -o escp2-driver.lo escp2-driver.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c escp2-driver.c  -fPIC -DPIC -o .libs/escp2-driver.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c escp2-driver.c -o escp2-driver.o >/dev/null 2>&1
    mv -f .deps/escp2-driver.Tpo .deps/escp2-driver.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c -o print-escp2-data.lo print-escp2-data.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c print-escp2-data.c  -fPIC -DPIC -o .libs/print-escp2-data.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c print-escp2-data.c -o print-escp2-data.o >/dev/null 2>&1
    mv -f .deps/print-escp2-data.Tpo .deps/print-escp2-data.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c -o escp2-channels.lo escp2-channels.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c escp2-channels.c  -fPIC -DPIC -o .libs/escp2-channels.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c escp2-channels.c -o escp2-channels.o >/dev/null 2>&1
    mv -f .deps/escp2-channels.Tpo .deps/escp2-channels.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c -o escp2-papers.lo escp2-papers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c escp2-papers.c  -fPIC -DPIC -o .libs/escp2-papers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c escp2-papers.c -o escp2-papers.o >/dev/null 2>&1
    mv -f .deps/escp2-papers.Tpo .deps/escp2-papers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c -o escp2-resolutions.lo escp2-resolutions.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c escp2-resolutions.c  -fPIC -DPIC -o .libs/escp2-resolutions.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c escp2-resolutions.c -o escp2-resolutions.o >/dev/null 2>&1
    mv -f .deps/escp2-resolutions.Tpo .deps/escp2-resolutions.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c -o print-lexmark.lo print-lexmark.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c print-lexmark.c  -fPIC -DPIC -o .libs/print-lexmark.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c print-lexmark.c -o print-lexmark.o >/dev/null 2>&1
    mv -f .deps/print-lexmark.Tpo .deps/print-lexmark.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c -o print-pcl.lo print-pcl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c print-pcl.c  -fPIC -DPIC -o .libs/print-pcl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c print-pcl.c -o print-pcl.o >/dev/null 2>&1
    mv -f .deps/print-pcl.Tpo .deps/print-pcl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c -o print-dpl.lo print-dpl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c print-dpl.c  -fPIC -DPIC -o .libs/print-dpl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c print-dpl.c -o print-dpl.o >/dev/null 2>&1
    mv -f .deps/print-dpl.Tpo .deps/print-dpl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c -o print-ps.lo print-ps.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c print-ps.c  -fPIC -DPIC -o .libs/print-ps.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c print-ps.c -o print-ps.o >/dev/null 2>&1
    mv -f .deps/print-ps.Tpo .deps/print-ps.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c -o xmlppd.lo xmlppd.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c xmlppd.c  -fPIC -DPIC -o .libs/xmlppd.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c xmlppd.c -o xmlppd.o >/dev/null 2>&1
    mv -f .deps/xmlppd.Tpo .deps/xmlppd.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c -o print-dyesub.lo print-dyesub.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c print-dyesub.c  -fPIC -DPIC -o .libs/print-dyesub.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c print-dyesub.c -o print-dyesub.o >/dev/null 2>&1
    mv -f .deps/print-dyesub.Tpo .deps/print-dyesub.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c -o print-raw.lo print-raw.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c print-raw.c  -fPIC -DPIC -o .libs/print-raw.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c print-raw.c -o print-raw.o >/dev/null 2>&1
    mv -f .deps/print-raw.Tpo .deps/print-raw.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3 -version-info 13:0:4 -rpath /usr/local/lib -no-undefined  -o libgutenprint.la -rpath /usr/local/lib array.lo bit-ops.lo channel.lo color.lo curve.lo curve-cache.lo dither-ed.lo dither-eventone.lo dither-inks.lo dither-main.lo dither-ordered.lo dither-very-fast.lo dither-predithered.lo generic-options.lo image.lo buffer-image.lo module.lo path.lo print-dither-matrices.lo print-list.lo print-papers.lo print-util.lo print-vars.lo print-version.lo print-weave.lo printers.lo refcache.lo sequence.lo string-list.lo xml.lo mxml-attr.lo mxml-file.lo mxml-node.lo mxml-search.lo  print-color.lo color-conversions.lo print-canon.lo print-escp2.lo escp2-driver.lo print-escp2-data.lo escp2-channels.lo escp2-papers.lo escp2-resolutions.lo print-lexmark.lo print-pcl.lo print-dpl.lo print-ps.lo xmlppd.lo print-dyesub.lo print-raw.lo -lm  
    libtool: link: gcc -shared  -fPIC -DPIC  .libs/array.o .libs/bit-ops.o .libs/channel.o .libs/color.o .libs/curve.o .libs/curve-cache.o .libs/dither-ed.o .libs/dither-eventone.o .libs/dither-inks.o .libs/dither-main.o .libs/dither-ordered.o .libs/dither-very-fast.o .libs/dither-predithered.o .libs/generic-options.o .libs/image.o .libs/buffer-image.o .libs/module.o .libs/path.o .libs/print-dither-matrices.o .libs/print-list.o .libs/print-papers.o .libs/print-util.o .libs/print-vars.o .libs/print-version.o .libs/print-weave.o .libs/printers.o .libs/refcache.o .libs/sequence.o .libs/string-list.o .libs/xml.o .libs/mxml-attr.o .libs/mxml-file.o .libs/mxml-node.o .libs/mxml-search.o .libs/print-color.o .libs/color-conversions.o .libs/print-canon.o .libs/print-escp2.o .libs/escp2-driver.o .libs/print-escp2-data.o .libs/escp2-channels.o .libs/escp2-papers.o .libs/escp2-resolutions.o .libs/print-lexmark.o .libs/print-pcl.o .libs/print-dpl.o .libs/print-ps.o .libs/xmlppd.o .libs/print-dyesub.o .libs/print-raw.o   -lm  -O3   -Wl,-soname -Wl,libgutenprint.so.9 -o .libs/libgutenprint.so.9.4.0
    libtool: link: (cd ".libs" && rm -f "libgutenprint.so.9" && ln -s "libgutenprint.so.9.4.0" "libgutenprint.so.9")
    libtool: link: (cd ".libs" && rm -f "libgutenprint.so" && ln -s "libgutenprint.so.9.4.0" "libgutenprint.so")
    libtool: link: ar cru .libs/libgutenprint.a  array.o bit-ops.o channel.o color.o curve.o curve-cache.o dither-ed.o dither-eventone.o dither-inks.o dither-main.o dither-ordered.o dither-very-fast.o dither-predithered.o generic-options.o image.o buffer-image.o module.o path.o print-dither-matrices.o print-list.o print-papers.o print-util.o print-vars.o print-version.o print-weave.o printers.o refcache.o sequence.o string-list.o xml.o mxml-attr.o mxml-file.o mxml-node.o mxml-search.o print-color.o color-conversions.o print-canon.o print-escp2.o escp2-driver.o print-escp2-data.o escp2-channels.o escp2-papers.o escp2-resolutions.o print-lexmark.o print-pcl.o print-dpl.o print-ps.o xmlppd.o print-dyesub.o print-raw.o
    ar: `u' modifier ignored since `D' is the default (see `U')
    libtool: link: ranlib .libs/libgutenprint.a
    libtool: link: ( cd ".libs" && rm -f "libgutenprint.la" && ln -s "../libgutenprint.la" "libgutenprint.la" )
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
    /bin/bash ../../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o check_duplicate_printers.test check_duplicate_printers.test.o ../../../src/main/libgutenprint.la  
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/check_duplicate_printers.test check_duplicate_printers.test.o  ../../../src/main/.libs/libgutenprint.so -lm
    STP_MODULE_PATH=../../../src/main/.libs:../../../src/main STP_DATA_PATH=../../../src/xml ./check_duplicate_printers.test
    CHECK_DUPLICATE_PRINTERS
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in canon.xml dpl.xml dyesub.xml escp2.xml lexmark.xml pcl.xml ps.xml raw.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT extract-strings.o -MD -MP -MF .deps/extract-strings.Tpo -c -o extract-strings.o extract-strings.c
    mv -f .deps/extract-strings.Tpo .deps/extract-strings.Po
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o extract-strings extract-strings.o ../../src/main/libgutenprint.la  
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/extract-strings extract-strings.o  ../../src/main/.libs/libgutenprint.so -lm
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in dither escp2 papers printers ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    rm -f xmli18n-tmp.h xmli18n-tmp.h.tmp
    ./extract-strings `cat xml-stamp | sed -e 's;^;./;'` > xmli18n-tmp.h.tmp
    mv xmli18n-tmp.h.tmp xmli18n-tmp.h
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make  all-recursive
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3'
    Making all in include
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in gutenprint
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in src
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src'
    Making all in main
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
    Making all in xml
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[6]: Nothing to be done for 'all-am'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[5]: Nothing to be done for 'all-am'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in escputil
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/escputil'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT d4lib.o -MD -MP -MF .deps/d4lib.Tpo -c -o d4lib.o d4lib.c
    mv -f .deps/d4lib.Tpo .deps/d4lib.Po
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escputil.o -MD -MP -MF .deps/escputil.Tpo -c -o escputil.o escputil.c
    escputil.c: In function ‘send_nulls’:
    escputil.c:697:3: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
       (void) write(fd, buf, sizeof(buf));
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    mv -f .deps/escputil.Tpo .deps/escputil.Po
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o escputil d4lib.o escputil.o ../../src/main/libgutenprint.la   
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/escputil d4lib.o escputil.o  ../../src/main/.libs/libgutenprint.so -lm
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/escputil'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c -o libgutenprintui2_la-printrcy.lo `test -f 'printrcy.c' || echo './'`printrcy.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c printrcy.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-printrcy.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c printrcy.c -o libgutenprintui2_la-printrcy.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-printrcy.Tpo .deps/libgutenprintui2_la-printrcy.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c -o libgutenprintui2_la-printrcl.lo `test -f 'printrcl.c' || echo './'`printrcl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c printrcl.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-printrcl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c printrcl.c -o libgutenprintui2_la-printrcl.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-printrcl.Tpo .deps/libgutenprintui2_la-printrcl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c -o libgutenprintui2_la-panel.lo `test -f 'panel.c' || echo './'`panel.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c panel.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-panel.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c panel.c -o libgutenprintui2_la-panel.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-panel.Tpo .deps/libgutenprintui2_la-panel.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c -o libgutenprintui2_la-plist.lo `test -f 'plist.c' || echo './'`plist.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c plist.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-plist.o
    plist.c: In function ‘stpui_print’:
    plist.c:1627:7: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
           write(syncfd[1], "Done", 5);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1631:6: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
          write(syncfd[1], "Done", 5);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1823:4: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
        (void) read(syncfd[0], buf, 8);
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c plist.c -o libgutenprintui2_la-plist.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-plist.Tpo .deps/libgutenprintui2_la-plist.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c -o libgutenprintui2_la-ui-utils.lo `test -f 'ui-utils.c' || echo './'`ui-utils.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c ui-utils.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-ui-utils.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c ui-utils.c -o libgutenprintui2_la-ui-utils.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-ui-utils.Tpo .deps/libgutenprintui2_la-ui-utils.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c -o libgutenprintui2_la-print-image-thumbnail.lo `test -f 'print-image-thumbnail.c' || echo './'`print-image-thumbnail.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c print-image-thumbnail.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-print-image-thumbnail.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c print-image-thumbnail.c -o libgutenprintui2_la-print-image-thumbnail.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-print-image-thumbnail.Tpo .deps/libgutenprintui2_la-print-image-thumbnail.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c -o libgutenprintui2_la-curve.lo `test -f 'curve.c' || echo './'`curve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c curve.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-curve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c curve.c -o libgutenprintui2_la-curve.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-curve.Tpo .deps/libgutenprintui2_la-curve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c -o libgutenprintui2_la-gammacurve.lo `test -f 'gammacurve.c' || echo './'`gammacurve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c gammacurve.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-gammacurve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c gammacurve.c -o libgutenprintui2_la-gammacurve.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-gammacurve.Tpo .deps/libgutenprintui2_la-gammacurve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c -o libgutenprintui2_la-typebuiltins.lo `test -f 'typebuiltins.c' || echo './'`typebuiltins.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c typebuiltins.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-typebuiltins.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c typebuiltins.c -o libgutenprintui2_la-typebuiltins.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-typebuiltins.Tpo .deps/libgutenprintui2_la-typebuiltins.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -version-info  6:0:4 -rpath /usr/local/lib -no-undefined  -o libgutenprintui2.la -rpath /usr/local/lib libgutenprintui2_la-printrcy.lo libgutenprintui2_la-printrcl.lo libgutenprintui2_la-panel.lo libgutenprintui2_la-plist.lo libgutenprintui2_la-ui-utils.lo libgutenprintui2_la-print-image-thumbnail.lo libgutenprintui2_la-curve.lo libgutenprintui2_la-gammacurve.lo libgutenprintui2_la-typebuiltins.lo ../../src/main/libgutenprint.la -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfontconfig -lfreetype -lm  
    libtool: link: gcc -shared  -fPIC -DPIC  .libs/libgutenprintui2_la-printrcy.o .libs/libgutenprintui2_la-printrcl.o .libs/libgutenprintui2_la-panel.o .libs/libgutenprintui2_la-plist.o .libs/libgutenprintui2_la-ui-utils.o .libs/libgutenprintui2_la-print-image-thumbnail.o .libs/libgutenprintui2_la-curve.o .libs/libgutenprintui2_la-gammacurve.o .libs/libgutenprintui2_la-typebuiltins.o   -Wl,-rpath -Wl,/home/khessels/gutenprint-5.3.3/src/main/.libs ../../src/main/.libs/libgutenprint.so -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfontconfig /usr/lib/x86_64-linux-gnu/libfreetype.so -lm  -O3 -pthread -O3   -pthread -Wl,-soname -Wl,libgutenprintui2.so.2 -o .libs/libgutenprintui2.so.2.4.0
    libtool: link: (cd ".libs" && rm -f "libgutenprintui2.so.2" && ln -s "libgutenprintui2.so.2.4.0" "libgutenprintui2.so.2")
    libtool: link: (cd ".libs" && rm -f "libgutenprintui2.so" && ln -s "libgutenprintui2.so.2.4.0" "libgutenprintui2.so")
    libtool: link: ar cru .libs/libgutenprintui2.a  libgutenprintui2_la-printrcy.o libgutenprintui2_la-printrcl.o libgutenprintui2_la-panel.o libgutenprintui2_la-plist.o libgutenprintui2_la-ui-utils.o libgutenprintui2_la-print-image-thumbnail.o libgutenprintui2_la-curve.o libgutenprintui2_la-gammacurve.o libgutenprintui2_la-typebuiltins.o
    ar: `u' modifier ignored since `D' is the default (see `U')
    libtool: link: ranlib .libs/libgutenprintui2.a
    libtool: link: ( cd ".libs" && rm -f "libgutenprintui2.la" && ln -s "../libgutenprintui2.la" "libgutenprintui2.la" )
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    Making all in gimp2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include   -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-image-gimp.o -MD -MP -MF .deps/print-image-gimp.Tpo -c -o print-image-gimp.o print-image-gimp.c
    In file included from print_gimp.h:37:0,
                     from print-image-gimp.c:27:
    ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory
     #include <gtk/gtk.h>
              ^~~~~~~~~~~
    compilation terminated.
    Makefile:549: recipe for target 'print-image-gimp.o' failed
    make[3]: *** [print-image-gimp.o] Error 1
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
    Makefile:481: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src'
    Makefile:597: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3'
    Makefile:528: recipe for target 'all' failed
    make: *** [all] Error 2
    khessels@kees-pc:~/gutenprint-5.3.3$ 
    
     
  • Kees Hessels

    Kees Hessels - 2020-02-10
    khessels@kees-pc:~/gutenprint-5.3.3$ V=1 make
    make -C src/xml
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in matrix-1x1.xml matrix-2x1.xml matrix-4x1.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml defaultblack.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml f360_ultrachrome_k3v_2.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k34.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v4.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml standard.xml standard_gen0.xml sx445.xml ultrachrome.xml wf40.xml wf500.xml x80.xml xp100.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml cd.xml cd_cutter_roll_feed.xml cd_roll_feed.xml cutter_roll_feed.xml default.xml default-duplex.xml pro3880.xml pro_roll_feed.xml pro_cutter_roll_feed.xml r1800.xml r2400.xml r2880.xml rx680.xml rx700.xml spro5000.xml standard_roll_feed.xml wf7000.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in baseline_300.xml baseline_360.xml bx.xml c1xx.xml c2x.xml c4x.xml c7xx.xml c8x_base.xml c8x.xml cpro.xml photo2.xml picmate.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3_base.xml pro_ultrachrome_k3_cutter.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10_base.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml pro_x000.xml pro_x500.xml pro_x600.xml pro_x700.xml pro_x800.xml pro_x880.xml r200.xml r240.xml r800.xml sc800.xml sp700.xml sp750.xml sp950.xml wf7xxx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in base ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in model_0.xml model_1.xml model_2.xml model_3.xml model_4.xml model_5.xml model_6.xml model_7.xml model_8.xml model_9.xml model_10.xml model_11.xml model_12.xml model_13.xml model_14.xml model_15.xml model_16.xml model_17.xml model_18.xml model_20.xml model_21.xml model_22.xml model_23.xml model_24.xml model_25.xml model_26.xml model_27.xml model_28.xml model_29.xml model_30.xml model_31.xml model_32.xml model_34.xml model_35.xml model_36.xml model_37.xml model_38.xml model_39.xml model_40.xml model_41.xml model_42.xml model_43.xml model_44.xml model_45.xml model_46.xml model_47.xml model_48.xml model_49.xml model_50.xml model_51.xml model_52.xml model_53.xml model_54.xml model_55.xml model_56.xml model_57.xml model_58.xml model_60.xml model_61.xml model_62.xml model_63.xml model_64.xml model_65.xml model_66.xml model_67.xml model_68.xml model_69.xml model_70.xml model_71.xml model_72.xml model_73.xml model_74.xml model_75.xml model_76.xml model_77.xml model_78.xml model_79.xml model_80.xml model_81.xml model_82.xml model_83.xml model_84.xml model_85.xml model_86.xml model_87.xml model_88.xml model_89.xml model_90.xml model_91.xml model_92.xml model_93.xml model_94.xml model_95.xml model_96.xml model_97.xml model_98.xml model_99.xml model_100.xml model_101.xml model_102.xml model_103.xml model_104.xml model_105.xml model_106.xml model_107.xml model_108.xml model_109.xml model_110.xml model_112.xml model_113.xml model_114.xml model_115.xml model_116.xml model_117.xml model_118.xml model_119.xml model_120.xml model_121.xml model_122.xml model_123.xml model_124.xml model_125.xml model_126.xml model_127.xml model_128.xml model_129.xml model_130.xml model_131.xml model_132.xml model_133.xml model_134.xml model_135.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in artisan.xml b500.xml c120.xml c64.xml c80.xml c82.xml claria.xml claria_xp.xml claria1400.xml cmy.xml cmykrb.xml cmykro.xml cx3650.xml f360.xml f360_photo.xml f360_photo7_japan.xml f360_ultrachrome.xml f360_ultrachrome_k3.xml f360_ultrachrome_k3v.xml nx100.xml photo_gen0.xml photo_gen1.xml photo_gen2.xml photo_gen3.xml photo_gen3_4.xml photo_gen4.xml photo_pigment.xml picturemate_4.xml picturemate_6.xml pro3880_ultrachrome_k3v.xml pro_gen1.xml pro_gen2.xml pro_pigment.xml pro_ultrachrome.xml pro_ultrachrome_k3.xml pro_ultrachrome_k3v.xml pro_ultrachrome_k3v10.xml pro_ultrachrome_k3v10a.xml pro_ultrachrome_k3v10b.xml r800.xml standard.xml standard_gen0.xml ultrachrome.xml wf500.xml x80.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in p1_5.xml picturemate.xml prox900.xml standard.xml v2880.xml wf40.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in  ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in c8x.xml escp2-i.xml prox600.xml sc480.xml sc680.xml sc740.xml sc860.xml sp700.xml sp720.xml wf6xx.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in pro7000.xml pro7500.xml pro7600.xml standard.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in inks inputslots model media mediasizes qualitypresets resolutions weaves ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in standard.xml labels.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    gcc -DHAVE_CONFIG_H -I. -I../../..  -I../../../include -I../../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT check_duplicate_printers.test.o -MD -MP -MF .deps/check_duplicate_printers.test.Tpo -c -o check_duplicate_printers.test.o check_duplicate_printers.test.c
    check_duplicate_printers.test.c: In function main’:
    check_duplicate_printers.test.c:37:7: warning: ignoring return value of freopen, declared with attribute warn_unused_result [-Wunused-result]
           freopen(path, "w", stdout);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~
    mv -f .deps/check_duplicate_printers.test.Tpo .deps/check_duplicate_printers.test.Po
    cd ../../../src/main; \
    make
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c -o array.lo array.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c  -fPIC -DPIC -o .libs/array.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT array.lo -MD -MP -MF .deps/array.Tpo -c array.c -o array.o >/dev/null 2>&1
    mv -f .deps/array.Tpo .deps/array.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c -o bit-ops.lo bit-ops.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c bit-ops.c  -fPIC -DPIC -o .libs/bit-ops.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT bit-ops.lo -MD -MP -MF .deps/bit-ops.Tpo -c bit-ops.c -o bit-ops.o >/dev/null 2>&1
    mv -f .deps/bit-ops.Tpo .deps/bit-ops.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c -o channel.lo channel.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c channel.c  -fPIC -DPIC -o .libs/channel.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT channel.lo -MD -MP -MF .deps/channel.Tpo -c channel.c -o channel.o >/dev/null 2>&1
    mv -f .deps/channel.Tpo .deps/channel.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c -o color.lo color.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c color.c  -fPIC -DPIC -o .libs/color.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color.lo -MD -MP -MF .deps/color.Tpo -c color.c -o color.o >/dev/null 2>&1
    mv -f .deps/color.Tpo .deps/color.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c -o curve.lo curve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c curve.c  -fPIC -DPIC -o .libs/curve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve.lo -MD -MP -MF .deps/curve.Tpo -c curve.c -o curve.o >/dev/null 2>&1
    mv -f .deps/curve.Tpo .deps/curve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c -o curve-cache.lo curve-cache.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c curve-cache.c  -fPIC -DPIC -o .libs/curve-cache.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT curve-cache.lo -MD -MP -MF .deps/curve-cache.Tpo -c curve-cache.c -o curve-cache.o >/dev/null 2>&1
    mv -f .deps/curve-cache.Tpo .deps/curve-cache.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c -o dither-ed.lo dither-ed.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c dither-ed.c  -fPIC -DPIC -o .libs/dither-ed.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ed.lo -MD -MP -MF .deps/dither-ed.Tpo -c dither-ed.c -o dither-ed.o >/dev/null 2>&1
    mv -f .deps/dither-ed.Tpo .deps/dither-ed.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c -o dither-eventone.lo dither-eventone.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c dither-eventone.c  -fPIC -DPIC -o .libs/dither-eventone.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-eventone.lo -MD -MP -MF .deps/dither-eventone.Tpo -c dither-eventone.c -o dither-eventone.o >/dev/null 2>&1
    mv -f .deps/dither-eventone.Tpo .deps/dither-eventone.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c -o dither-inks.lo dither-inks.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c dither-inks.c  -fPIC -DPIC -o .libs/dither-inks.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-inks.lo -MD -MP -MF .deps/dither-inks.Tpo -c dither-inks.c -o dither-inks.o >/dev/null 2>&1
    mv -f .deps/dither-inks.Tpo .deps/dither-inks.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c -o dither-main.lo dither-main.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c dither-main.c  -fPIC -DPIC -o .libs/dither-main.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-main.lo -MD -MP -MF .deps/dither-main.Tpo -c dither-main.c -o dither-main.o >/dev/null 2>&1
    mv -f .deps/dither-main.Tpo .deps/dither-main.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c -o dither-ordered.lo dither-ordered.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c dither-ordered.c  -fPIC -DPIC -o .libs/dither-ordered.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-ordered.lo -MD -MP -MF .deps/dither-ordered.Tpo -c dither-ordered.c -o dither-ordered.o >/dev/null 2>&1
    mv -f .deps/dither-ordered.Tpo .deps/dither-ordered.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c -o dither-very-fast.lo dither-very-fast.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c dither-very-fast.c  -fPIC -DPIC -o .libs/dither-very-fast.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-very-fast.lo -MD -MP -MF .deps/dither-very-fast.Tpo -c dither-very-fast.c -o dither-very-fast.o >/dev/null 2>&1
    mv -f .deps/dither-very-fast.Tpo .deps/dither-very-fast.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c -o dither-predithered.lo dither-predithered.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c dither-predithered.c  -fPIC -DPIC -o .libs/dither-predithered.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT dither-predithered.lo -MD -MP -MF .deps/dither-predithered.Tpo -c dither-predithered.c -o dither-predithered.o >/dev/null 2>&1
    mv -f .deps/dither-predithered.Tpo .deps/dither-predithered.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c -o generic-options.lo generic-options.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c generic-options.c  -fPIC -DPIC -o .libs/generic-options.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT generic-options.lo -MD -MP -MF .deps/generic-options.Tpo -c generic-options.c -o generic-options.o >/dev/null 2>&1
    mv -f .deps/generic-options.Tpo .deps/generic-options.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c -o image.lo image.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c image.c  -fPIC -DPIC -o .libs/image.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT image.lo -MD -MP -MF .deps/image.Tpo -c image.c -o image.o >/dev/null 2>&1
    mv -f .deps/image.Tpo .deps/image.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c -o buffer-image.lo buffer-image.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c buffer-image.c  -fPIC -DPIC -o .libs/buffer-image.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT buffer-image.lo -MD -MP -MF .deps/buffer-image.Tpo -c buffer-image.c -o buffer-image.o >/dev/null 2>&1
    mv -f .deps/buffer-image.Tpo .deps/buffer-image.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c -o module.lo module.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c module.c  -fPIC -DPIC -o .libs/module.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT module.lo -MD -MP -MF .deps/module.Tpo -c module.c -o module.o >/dev/null 2>&1
    mv -f .deps/module.Tpo .deps/module.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c -o path.lo path.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c path.c  -fPIC -DPIC -o .libs/path.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT path.lo -MD -MP -MF .deps/path.Tpo -c path.c -o path.o >/dev/null 2>&1
    mv -f .deps/path.Tpo .deps/path.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c -o print-dither-matrices.lo print-dither-matrices.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c print-dither-matrices.c  -fPIC -DPIC -o .libs/print-dither-matrices.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dither-matrices.lo -MD -MP -MF .deps/print-dither-matrices.Tpo -c print-dither-matrices.c -o print-dither-matrices.o >/dev/null 2>&1
    mv -f .deps/print-dither-matrices.Tpo .deps/print-dither-matrices.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c -o print-list.lo print-list.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c print-list.c  -fPIC -DPIC -o .libs/print-list.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-list.lo -MD -MP -MF .deps/print-list.Tpo -c print-list.c -o print-list.o >/dev/null 2>&1
    mv -f .deps/print-list.Tpo .deps/print-list.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c -o print-papers.lo print-papers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c print-papers.c  -fPIC -DPIC -o .libs/print-papers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-papers.lo -MD -MP -MF .deps/print-papers.Tpo -c print-papers.c -o print-papers.o >/dev/null 2>&1
    mv -f .deps/print-papers.Tpo .deps/print-papers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c -o print-util.lo print-util.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c print-util.c  -fPIC -DPIC -o .libs/print-util.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-util.lo -MD -MP -MF .deps/print-util.Tpo -c print-util.c -o print-util.o >/dev/null 2>&1
    mv -f .deps/print-util.Tpo .deps/print-util.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c -o print-vars.lo print-vars.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c print-vars.c  -fPIC -DPIC -o .libs/print-vars.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-vars.lo -MD -MP -MF .deps/print-vars.Tpo -c print-vars.c -o print-vars.o >/dev/null 2>&1
    mv -f .deps/print-vars.Tpo .deps/print-vars.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c -o print-version.lo print-version.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c print-version.c  -fPIC -DPIC -o .libs/print-version.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-version.lo -MD -MP -MF .deps/print-version.Tpo -c print-version.c -o print-version.o >/dev/null 2>&1
    mv -f .deps/print-version.Tpo .deps/print-version.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c -o print-weave.lo print-weave.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c print-weave.c  -fPIC -DPIC -o .libs/print-weave.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-weave.lo -MD -MP -MF .deps/print-weave.Tpo -c print-weave.c -o print-weave.o >/dev/null 2>&1
    mv -f .deps/print-weave.Tpo .deps/print-weave.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c -o printers.lo printers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c printers.c  -fPIC -DPIC -o .libs/printers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT printers.lo -MD -MP -MF .deps/printers.Tpo -c printers.c -o printers.o >/dev/null 2>&1
    mv -f .deps/printers.Tpo .deps/printers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c -o refcache.lo refcache.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c refcache.c  -fPIC -DPIC -o .libs/refcache.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT refcache.lo -MD -MP -MF .deps/refcache.Tpo -c refcache.c -o refcache.o >/dev/null 2>&1
    mv -f .deps/refcache.Tpo .deps/refcache.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c -o sequence.lo sequence.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c sequence.c  -fPIC -DPIC -o .libs/sequence.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT sequence.lo -MD -MP -MF .deps/sequence.Tpo -c sequence.c -o sequence.o >/dev/null 2>&1
    mv -f .deps/sequence.Tpo .deps/sequence.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c -o string-list.lo string-list.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c string-list.c  -fPIC -DPIC -o .libs/string-list.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT string-list.lo -MD -MP -MF .deps/string-list.Tpo -c string-list.c -o string-list.o >/dev/null 2>&1
    mv -f .deps/string-list.Tpo .deps/string-list.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c -o xml.lo xml.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c xml.c  -fPIC -DPIC -o .libs/xml.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xml.lo -MD -MP -MF .deps/xml.Tpo -c xml.c -o xml.o >/dev/null 2>&1
    mv -f .deps/xml.Tpo .deps/xml.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c -o mxml-attr.lo mxml-attr.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c mxml-attr.c  -fPIC -DPIC -o .libs/mxml-attr.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-attr.lo -MD -MP -MF .deps/mxml-attr.Tpo -c mxml-attr.c -o mxml-attr.o >/dev/null 2>&1
    mv -f .deps/mxml-attr.Tpo .deps/mxml-attr.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c -o mxml-file.lo mxml-file.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c mxml-file.c  -fPIC -DPIC -o .libs/mxml-file.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-file.lo -MD -MP -MF .deps/mxml-file.Tpo -c mxml-file.c -o mxml-file.o >/dev/null 2>&1
    mv -f .deps/mxml-file.Tpo .deps/mxml-file.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c -o mxml-node.lo mxml-node.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c mxml-node.c  -fPIC -DPIC -o .libs/mxml-node.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-node.lo -MD -MP -MF .deps/mxml-node.Tpo -c mxml-node.c -o mxml-node.o >/dev/null 2>&1
    mv -f .deps/mxml-node.Tpo .deps/mxml-node.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c -o mxml-search.lo mxml-search.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c mxml-search.c  -fPIC -DPIC -o .libs/mxml-search.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT mxml-search.lo -MD -MP -MF .deps/mxml-search.Tpo -c mxml-search.c -o mxml-search.o >/dev/null 2>&1
    mv -f .deps/mxml-search.Tpo .deps/mxml-search.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c -o print-color.lo print-color.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c print-color.c  -fPIC -DPIC -o .libs/print-color.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-color.lo -MD -MP -MF .deps/print-color.Tpo -c print-color.c -o print-color.o >/dev/null 2>&1
    mv -f .deps/print-color.Tpo .deps/print-color.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c -o color-conversions.lo color-conversions.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c color-conversions.c  -fPIC -DPIC -o .libs/color-conversions.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT color-conversions.lo -MD -MP -MF .deps/color-conversions.Tpo -c color-conversions.c -o color-conversions.o >/dev/null 2>&1
    mv -f .deps/color-conversions.Tpo .deps/color-conversions.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c -o print-canon.lo print-canon.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c print-canon.c  -fPIC -DPIC -o .libs/print-canon.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-canon.lo -MD -MP -MF .deps/print-canon.Tpo -c print-canon.c -o print-canon.o >/dev/null 2>&1
    mv -f .deps/print-canon.Tpo .deps/print-canon.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c -o print-escp2.lo print-escp2.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c print-escp2.c  -fPIC -DPIC -o .libs/print-escp2.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2.lo -MD -MP -MF .deps/print-escp2.Tpo -c print-escp2.c -o print-escp2.o >/dev/null 2>&1
    mv -f .deps/print-escp2.Tpo .deps/print-escp2.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c -o escp2-driver.lo escp2-driver.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c escp2-driver.c  -fPIC -DPIC -o .libs/escp2-driver.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-driver.lo -MD -MP -MF .deps/escp2-driver.Tpo -c escp2-driver.c -o escp2-driver.o >/dev/null 2>&1
    mv -f .deps/escp2-driver.Tpo .deps/escp2-driver.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c -o print-escp2-data.lo print-escp2-data.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c print-escp2-data.c  -fPIC -DPIC -o .libs/print-escp2-data.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-escp2-data.lo -MD -MP -MF .deps/print-escp2-data.Tpo -c print-escp2-data.c -o print-escp2-data.o >/dev/null 2>&1
    mv -f .deps/print-escp2-data.Tpo .deps/print-escp2-data.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c -o escp2-channels.lo escp2-channels.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c escp2-channels.c  -fPIC -DPIC -o .libs/escp2-channels.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-channels.lo -MD -MP -MF .deps/escp2-channels.Tpo -c escp2-channels.c -o escp2-channels.o >/dev/null 2>&1
    mv -f .deps/escp2-channels.Tpo .deps/escp2-channels.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c -o escp2-papers.lo escp2-papers.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c escp2-papers.c  -fPIC -DPIC -o .libs/escp2-papers.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-papers.lo -MD -MP -MF .deps/escp2-papers.Tpo -c escp2-papers.c -o escp2-papers.o >/dev/null 2>&1
    mv -f .deps/escp2-papers.Tpo .deps/escp2-papers.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c -o escp2-resolutions.lo escp2-resolutions.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c escp2-resolutions.c  -fPIC -DPIC -o .libs/escp2-resolutions.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT escp2-resolutions.lo -MD -MP -MF .deps/escp2-resolutions.Tpo -c escp2-resolutions.c -o escp2-resolutions.o >/dev/null 2>&1
    mv -f .deps/escp2-resolutions.Tpo .deps/escp2-resolutions.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c -o print-lexmark.lo print-lexmark.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c print-lexmark.c  -fPIC -DPIC -o .libs/print-lexmark.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-lexmark.lo -MD -MP -MF .deps/print-lexmark.Tpo -c print-lexmark.c -o print-lexmark.o >/dev/null 2>&1
    mv -f .deps/print-lexmark.Tpo .deps/print-lexmark.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c -o print-pcl.lo print-pcl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c print-pcl.c  -fPIC -DPIC -o .libs/print-pcl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-pcl.lo -MD -MP -MF .deps/print-pcl.Tpo -c print-pcl.c -o print-pcl.o >/dev/null 2>&1
    mv -f .deps/print-pcl.Tpo .deps/print-pcl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c -o print-dpl.lo print-dpl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c print-dpl.c  -fPIC -DPIC -o .libs/print-dpl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dpl.lo -MD -MP -MF .deps/print-dpl.Tpo -c print-dpl.c -o print-dpl.o >/dev/null 2>&1
    mv -f .deps/print-dpl.Tpo .deps/print-dpl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c -o print-ps.lo print-ps.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c print-ps.c  -fPIC -DPIC -o .libs/print-ps.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-ps.lo -MD -MP -MF .deps/print-ps.Tpo -c print-ps.c -o print-ps.o >/dev/null 2>&1
    mv -f .deps/print-ps.Tpo .deps/print-ps.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c -o xmlppd.lo xmlppd.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c xmlppd.c  -fPIC -DPIC -o .libs/xmlppd.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT xmlppd.lo -MD -MP -MF .deps/xmlppd.Tpo -c xmlppd.c -o xmlppd.o >/dev/null 2>&1
    mv -f .deps/xmlppd.Tpo .deps/xmlppd.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c -o print-dyesub.lo print-dyesub.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c print-dyesub.c  -fPIC -DPIC -o .libs/print-dyesub.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-dyesub.lo -MD -MP -MF .deps/print-dyesub.Tpo -c print-dyesub.c -o print-dyesub.o >/dev/null 2>&1
    mv -f .deps/print-dyesub.Tpo .deps/print-dyesub.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c -o print-raw.lo print-raw.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c print-raw.c  -fPIC -DPIC -o .libs/print-raw.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -MT print-raw.lo -MD -MP -MF .deps/print-raw.Tpo -c print-raw.c -o print-raw.o >/dev/null 2>&1
    mv -f .deps/print-raw.Tpo .deps/print-raw.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3 -version-info 13:0:4 -rpath /usr/local/lib -no-undefined  -o libgutenprint.la -rpath /usr/local/lib array.lo bit-ops.lo channel.lo color.lo curve.lo curve-cache.lo dither-ed.lo dither-eventone.lo dither-inks.lo dither-main.lo dither-ordered.lo dither-very-fast.lo dither-predithered.lo generic-options.lo image.lo buffer-image.lo module.lo path.lo print-dither-matrices.lo print-list.lo print-papers.lo print-util.lo print-vars.lo print-version.lo print-weave.lo printers.lo refcache.lo sequence.lo string-list.lo xml.lo mxml-attr.lo mxml-file.lo mxml-node.lo mxml-search.lo  print-color.lo color-conversions.lo print-canon.lo print-escp2.lo escp2-driver.lo print-escp2-data.lo escp2-channels.lo escp2-papers.lo escp2-resolutions.lo print-lexmark.lo print-pcl.lo print-dpl.lo print-ps.lo xmlppd.lo print-dyesub.lo print-raw.lo -lm  
    libtool: link: gcc -shared  -fPIC -DPIC  .libs/array.o .libs/bit-ops.o .libs/channel.o .libs/color.o .libs/curve.o .libs/curve-cache.o .libs/dither-ed.o .libs/dither-eventone.o .libs/dither-inks.o .libs/dither-main.o .libs/dither-ordered.o .libs/dither-very-fast.o .libs/dither-predithered.o .libs/generic-options.o .libs/image.o .libs/buffer-image.o .libs/module.o .libs/path.o .libs/print-dither-matrices.o .libs/print-list.o .libs/print-papers.o .libs/print-util.o .libs/print-vars.o .libs/print-version.o .libs/print-weave.o .libs/printers.o .libs/refcache.o .libs/sequence.o .libs/string-list.o .libs/xml.o .libs/mxml-attr.o .libs/mxml-file.o .libs/mxml-node.o .libs/mxml-search.o .libs/print-color.o .libs/color-conversions.o .libs/print-canon.o .libs/print-escp2.o .libs/escp2-driver.o .libs/print-escp2-data.o .libs/escp2-channels.o .libs/escp2-papers.o .libs/escp2-resolutions.o .libs/print-lexmark.o .libs/print-pcl.o .libs/print-dpl.o .libs/print-ps.o .libs/xmlppd.o .libs/print-dyesub.o .libs/print-raw.o   -lm  -O3   -Wl,-soname -Wl,libgutenprint.so.9 -o .libs/libgutenprint.so.9.4.0
    libtool: link: (cd ".libs" && rm -f "libgutenprint.so.9" && ln -s "libgutenprint.so.9.4.0" "libgutenprint.so.9")
    libtool: link: (cd ".libs" && rm -f "libgutenprint.so" && ln -s "libgutenprint.so.9.4.0" "libgutenprint.so")
    libtool: link: ar cru .libs/libgutenprint.a  array.o bit-ops.o channel.o color.o curve.o curve-cache.o dither-ed.o dither-eventone.o dither-inks.o dither-main.o dither-ordered.o dither-very-fast.o dither-predithered.o generic-options.o image.o buffer-image.o module.o path.o print-dither-matrices.o print-list.o print-papers.o print-util.o print-vars.o print-version.o print-weave.o printers.o refcache.o sequence.o string-list.o xml.o mxml-attr.o mxml-file.o mxml-node.o mxml-search.o print-color.o color-conversions.o print-canon.o print-escp2.o escp2-driver.o print-escp2-data.o escp2-channels.o escp2-papers.o escp2-resolutions.o print-lexmark.o print-pcl.o print-dpl.o print-ps.o xmlppd.o print-dyesub.o print-raw.o
    ar: `u' modifier ignored since `D' is the default (see `U')
    libtool: link: ranlib .libs/libgutenprint.a
    libtool: link: ( cd ".libs" && rm -f "libgutenprint.la" && ln -s "../libgutenprint.la" "libgutenprint.la" )
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
    /bin/bash ../../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o check_duplicate_printers.test check_duplicate_printers.test.o ../../../src/main/libgutenprint.la  
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/check_duplicate_printers.test check_duplicate_printers.test.o  ../../../src/main/.libs/libgutenprint.so -lm
    STP_MODULE_PATH=../../../src/main/.libs:../../../src/main STP_DATA_PATH=../../../src/xml ./check_duplicate_printers.test
    CHECK_DUPLICATE_PRINTERS
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for f in canon.xml dpl.xml dyesub.xml escp2.xml lexmark.xml pcl.xml ps.xml raw.xml ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT extract-strings.o -MD -MP -MF .deps/extract-strings.Tpo -c -o extract-strings.o extract-strings.c
    mv -f .deps/extract-strings.Tpo .deps/extract-strings.Po
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o extract-strings extract-strings.o ../../src/main/libgutenprint.la  
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/extract-strings extract-strings.o  ../../src/main/.libs/libgutenprint.so -lm
    rm -f xml-stamp xml-stamp.tmp
    touch xml-stamp.tmp
    for dir in dither escp2 papers printers ; do \
      sed "s;^;$dir/;" ${dir}/xml-stamp >> xml-stamp.tmp ; \
    done
    for f in  ; do echo $f >> xml-stamp.tmp; done
    mv xml-stamp.tmp xml-stamp
    rm -f xmli18n-tmp.h xmli18n-tmp.h.tmp
    ./extract-strings `cat xml-stamp | sed -e 's;^;./;'` > xmli18n-tmp.h.tmp
    mv xmli18n-tmp.h.tmp xmli18n-tmp.h
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make  all-recursive
    make[1]: Entering directory '/home/khessels/gutenprint-5.3.3'
    Making all in include
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in gutenprint
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprint'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include/gutenprintui2'
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/include'
    make[3]: Nothing to be done for 'all-am'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/include'
    Making all in src
    make[2]: Entering directory '/home/khessels/gutenprint-5.3.3/src'
    Making all in main
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/main'
    make[3]: Nothing to be done for 'all'.
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/main'
    Making all in xml
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in dither
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/dither'
    Making all in escp2
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in inks
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inks'
    Making all in inputslots
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/inputslots'
    Making all in model
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in base
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Nothing to be done for 'all'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model/base'
    make[6]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[6]: Nothing to be done for 'all-am'.
    make[6]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/model'
    Making all in media
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/media'
    Making all in mediasizes
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/mediasizes'
    Making all in qualitypresets
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/qualitypresets'
    Making all in resolutions
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/resolutions'
    Making all in weaves
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Nothing to be done for 'all'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2/weaves'
    make[5]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[5]: Nothing to be done for 'all-am'.
    make[5]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/escp2'
    Making all in papers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/papers'
    Making all in printers
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Nothing to be done for 'all'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml/printers'
    make[4]: Entering directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[4]: Nothing to be done for 'all-am'.
    make[4]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/xml'
    Making all in escputil
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/escputil'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT d4lib.o -MD -MP -MF .deps/d4lib.Tpo -c -o d4lib.o d4lib.c
    mv -f .deps/d4lib.Tpo .deps/d4lib.Po
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT escputil.o -MD -MP -MF .deps/escputil.Tpo -c -o escputil.o escputil.c
    escputil.c: In function ‘send_nulls’:
    escputil.c:697:3: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
       (void) write(fd, buf, sizeof(buf));
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    mv -f .deps/escputil.Tpo .deps/escputil.Po
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3   -o escputil d4lib.o escputil.o ../../src/main/libgutenprint.la   
    libtool: link: gcc -Disfinite=finite -O3 -o .libs/escputil d4lib.o escputil.o  ../../src/main/.libs/libgutenprint.so -lm
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/escputil'
    Making all in gutenprintui2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c -o libgutenprintui2_la-printrcy.lo `test -f 'printrcy.c' || echo './'`printrcy.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c printrcy.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-printrcy.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcy.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcy.Tpo -c printrcy.c -o libgutenprintui2_la-printrcy.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-printrcy.Tpo .deps/libgutenprintui2_la-printrcy.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c -o libgutenprintui2_la-printrcl.lo `test -f 'printrcl.c' || echo './'`printrcl.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c printrcl.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-printrcl.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-printrcl.lo -MD -MP -MF .deps/libgutenprintui2_la-printrcl.Tpo -c printrcl.c -o libgutenprintui2_la-printrcl.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-printrcl.Tpo .deps/libgutenprintui2_la-printrcl.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c -o libgutenprintui2_la-panel.lo `test -f 'panel.c' || echo './'`panel.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c panel.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-panel.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-panel.lo -MD -MP -MF .deps/libgutenprintui2_la-panel.Tpo -c panel.c -o libgutenprintui2_la-panel.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-panel.Tpo .deps/libgutenprintui2_la-panel.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c -o libgutenprintui2_la-plist.lo `test -f 'plist.c' || echo './'`plist.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c plist.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-plist.o
    plist.c: In function ‘stpui_print’:
    plist.c:1627:7: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
           write(syncfd[1], "Done", 5);
           ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1631:6: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
          write(syncfd[1], "Done", 5);
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    plist.c:1823:4: warning: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Wunused-result]
        (void) read(syncfd[0], buf, 8);
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-plist.lo -MD -MP -MF .deps/libgutenprintui2_la-plist.Tpo -c plist.c -o libgutenprintui2_la-plist.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-plist.Tpo .deps/libgutenprintui2_la-plist.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c -o libgutenprintui2_la-ui-utils.lo `test -f 'ui-utils.c' || echo './'`ui-utils.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c ui-utils.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-ui-utils.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-ui-utils.lo -MD -MP -MF .deps/libgutenprintui2_la-ui-utils.Tpo -c ui-utils.c -o libgutenprintui2_la-ui-utils.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-ui-utils.Tpo .deps/libgutenprintui2_la-ui-utils.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c -o libgutenprintui2_la-print-image-thumbnail.lo `test -f 'print-image-thumbnail.c' || echo './'`print-image-thumbnail.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c print-image-thumbnail.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-print-image-thumbnail.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-print-image-thumbnail.lo -MD -MP -MF .deps/libgutenprintui2_la-print-image-thumbnail.Tpo -c print-image-thumbnail.c -o libgutenprintui2_la-print-image-thumbnail.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-print-image-thumbnail.Tpo .deps/libgutenprintui2_la-print-image-thumbnail.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c -o libgutenprintui2_la-curve.lo `test -f 'curve.c' || echo './'`curve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c curve.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-curve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-curve.lo -MD -MP -MF .deps/libgutenprintui2_la-curve.Tpo -c curve.c -o libgutenprintui2_la-curve.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-curve.Tpo .deps/libgutenprintui2_la-curve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c -o libgutenprintui2_la-gammacurve.lo `test -f 'gammacurve.c' || echo './'`gammacurve.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c gammacurve.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-gammacurve.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-gammacurve.lo -MD -MP -MF .deps/libgutenprintui2_la-gammacurve.Tpo -c gammacurve.c -o libgutenprintui2_la-gammacurve.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-gammacurve.Tpo .deps/libgutenprintui2_la-gammacurve.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include  -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c -o libgutenprintui2_la-typebuiltins.lo `test -f 'typebuiltins.c' || echo './'`typebuiltins.c
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c typebuiltins.c  -fPIC -DPIC -o .libs/libgutenprintui2_la-typebuiltins.o
    libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../include -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes -Disfinite=finite -O3 -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite -O3 -MT libgutenprintui2_la-typebuiltins.lo -MD -MP -MF .deps/libgutenprintui2_la-typebuiltins.Tpo -c typebuiltins.c -o libgutenprintui2_la-typebuiltins.o >/dev/null 2>&1
    mv -f .deps/libgutenprintui2_la-typebuiltins.Tpo .deps/libgutenprintui2_la-typebuiltins.Plo
    /bin/bash ../../libtool  --tag=CC   --mode=link gcc  -Disfinite=finite  -O3  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -Disfinite=finite  -O3 -version-info  6:0:4 -rpath /usr/local/lib -no-undefined  -o libgutenprintui2.la -rpath /usr/local/lib libgutenprintui2_la-printrcy.lo libgutenprintui2_la-printrcl.lo libgutenprintui2_la-panel.lo libgutenprintui2_la-plist.lo libgutenprintui2_la-ui-utils.lo libgutenprintui2_la-print-image-thumbnail.lo libgutenprintui2_la-curve.lo libgutenprintui2_la-gammacurve.lo libgutenprintui2_la-typebuiltins.lo ../../src/main/libgutenprint.la -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfontconfig -lfreetype -lm  
    libtool: link: gcc -shared  -fPIC -DPIC  .libs/libgutenprintui2_la-printrcy.o .libs/libgutenprintui2_la-printrcl.o .libs/libgutenprintui2_la-panel.o .libs/libgutenprintui2_la-plist.o .libs/libgutenprintui2_la-ui-utils.o .libs/libgutenprintui2_la-print-image-thumbnail.o .libs/libgutenprintui2_la-curve.o .libs/libgutenprintui2_la-gammacurve.o .libs/libgutenprintui2_la-typebuiltins.o   -Wl,-rpath -Wl,/home/khessels/gutenprint-5.3.3/src/main/.libs ../../src/main/.libs/libgutenprint.so -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lfontconfig /usr/lib/x86_64-linux-gnu/libfreetype.so -lm  -O3 -pthread -O3   -pthread -Wl,-soname -Wl,libgutenprintui2.so.2 -o .libs/libgutenprintui2.so.2.4.0
    libtool: link: (cd ".libs" && rm -f "libgutenprintui2.so.2" && ln -s "libgutenprintui2.so.2.4.0" "libgutenprintui2.so.2")
    libtool: link: (cd ".libs" && rm -f "libgutenprintui2.so" && ln -s "libgutenprintui2.so.2.4.0" "libgutenprintui2.so")
    libtool: link: ar cru .libs/libgutenprintui2.a  libgutenprintui2_la-printrcy.o libgutenprintui2_la-printrcl.o libgutenprintui2_la-panel.o libgutenprintui2_la-plist.o libgutenprintui2_la-ui-utils.o libgutenprintui2_la-print-image-thumbnail.o libgutenprintui2_la-curve.o libgutenprintui2_la-gammacurve.o libgutenprintui2_la-typebuiltins.o
    ar: `u' modifier ignored since `D' is the default (see `U')
    libtool: link: ranlib .libs/libgutenprintui2.a
    libtool: link: ( cd ".libs" && rm -f "libgutenprintui2.la" && ln -s "../libgutenprintui2.la" "libgutenprintui2.la" )
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gutenprintui2'
    Making all in gimp2
    make[3]: Entering directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
    gcc -DHAVE_CONFIG_H -I. -I../..  -I../../include -I../../include   -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wwrite-strings -Werror-implicit-function-declaration -Winline -Wformat=2 -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes   -Disfinite=finite  -O3 -MT print-image-gimp.o -MD -MP -MF .deps/print-image-gimp.Tpo -c -o print-image-gimp.o print-image-gimp.c
    In file included from print_gimp.h:37:0,
                     from print-image-gimp.c:27:
    ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h: No such file or directory
     #include <gtk/gtk.h>
              ^~~~~~~~~~~
    compilation terminated.
    Makefile:549: recipe for target 'print-image-gimp.o' failed
    make[3]: *** [print-image-gimp.o] Error 1
    make[3]: Leaving directory '/home/khessels/gutenprint-5.3.3/src/gimp2'
    Makefile:481: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/home/khessels/gutenprint-5.3.3/src'
    Makefile:597: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/khessels/gutenprint-5.3.3'
    Makefile:528: recipe for target 'all' failed
    make: *** [all] Error 2
    khessels@kees-pc:~/gutenprint-5.3.3$ 
    
     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    Interesting that the gtk cflags aren't being included here. What does

    pkg-config --cflags gimpui-2.0

    return?

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    Do you have the gimp development package installed? I notice that you explicitly mention the libgtk2.0-dev package, but did you install gimpui2.0-dev, gimp2.0-dev, or whatever?

     
    • Kees Hessels

      Kees Hessels - 2020-02-10

      hmm... let me try that...

      On Sun, Feb 9, 2020 at 9:09 PM Robert Krawitz rlk@users.sourceforge.net
      wrote:

      Do you have the gimp development package installed? I notice that you
      explicitly mention the libgtk2.0-dev package, but did you install
      gimpui2.0-dev, gimp2.0-dev, or whatever?


      Status: open
      Group: 5.3-fixed
      Created: Mon Dec 16, 2019 09:51 AM UTC by Miroslav Šulc
      Last Updated: Mon Feb 10, 2020 03:01 AM UTC
      Owner: nobody

      when attempting to compile gutenprint-5.3.3 (and even the older versions)
      with -with-gimp2 --with-gimp2-as-gutenprint, the compilation fails with
      this error:

      Making all in gimp2
      make[3]: Entering directory
      '/var/tmp/portage/net-print/gutenprint-5.3.3/work/gutenprint-5.3.3/src/gimp2'
      x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include
      -I../../include -march=native -O2 -pipe -Wmissing-prototypes
      -Wmissing-declarations -Wnested-externs -Wwrite-strings
      -Werror-implicit-function-declaration -Winline -Wformat=2
      -finline-limit=131072 -Wformat -Werror=format-security -Wmissing-prototypes
      -Disfinite=finite -march=native -O2 -pipe -O3 -c -o print-image-gimp.o
      print-image-gimp.c
      In file included from print_gimp.h:37,
      from print-image-gimp.c:27:
      ../../include/gutenprintui2/gutenprintui.h:47:10: fatal error: gtk/gtk.h:
      No such file or directory
      47 | #include <gtk gtk.h="">
      | ^~~~~~~~~~~
      compilation terminated.</gtk>

      imo the reason is that the path for gtk include is missing in the command
      as the header file is located here:
      /usr/include/gtk-2.0/gtk/gtk.h
      instead of being it expected in:
      /usr/include/gtk/gtk.h

      more information to the bug can be found here:
      https://bugs.gentoo.org/613278 (though it was first reported for version
      5.2.12, it still appears in 5.3.3).


      Sent from sourceforge.net because you indicated interest in
      https://sourceforge.net/p/gimp-print/bugs/725/

      To unsubscribe from further messages, please visit
      https://sourceforge.net/auth/subscriptions/

       

      Related

      Bugs: #725

  • Kees Hessels

    Kees Hessels - 2020-02-10

    i dont know about the other packages, couldnt find them...

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    No such luck.. installed libgimp2.0 libgimp2.0-dev and the gimp registry package
    Still the same error with gtk

     
  • Robert Krawitz

    Robert Krawitz - 2020-02-10

    Please re-run configure (and you should not need the --with-gimp).

     
  • Kees Hessels

    Kees Hessels - 2020-02-10

    reconfigured without --with-gimp2, make clean and make...

    Houston, we have lift off :)

    I guess it was the libgimp2.0-dev, just had to reconfigure...
    Thanks man, Super cool you did this on a Sunday night no less...

    I guess we are all nerds here right ... Thanks again man

     
1 2 > >> (Page 1 of 2)

Log in to post a comment.

MongoDB Logo MongoDB