Thank you for that link. I hadn't retrieved the file from the releases
section. I have now re-obtained and re-installed both leptonica and
tesseract. Because I found files lib{gif,jpeg,png,tiff,webp,openjp2}* in
system folder /usr/lib/x86_64-linux-gnu, I included that folder to the
linker. The steps followed are as follows:
wget https://github.com/DanBloomberg/leptonica/archive/1.79.0.zip
unzip 1.79.0.zip
cd leptonica-1.79.0/
./autogen.sh
./configure "LDFLAGS=-L/usr/lib/x86_64-linux-gnu"
make
make install
cd ..
wget https://github.com/tesseract-ocr/tesseract/archive/4.1.1.tar.gz
zcat 4.1.1.tar.gz |tar xvf -
cd tesseract-4.1.1
./autogen.sh
./configure "LDFLAGS=-L/usr/lib/x86_64-linux-gnu"
make
make install
ldconfig
make training
make training-install
I've attached the config.log files produced by both configure commands, in
case they contain any clues.
After this new install, the 'tesseract -v' command outputs:
tesseract 4.1.1
leptonica-1.79.0
libpng 1.2.50 : zlib 1.2.8
And of course, it does not work. Testing on an image of a page of text:
tesseract 6305_6.jpg 6305_6
Error in pixReadMemTiff: function not present
Error in pixReadMem: tiff: no pix returned
Error in pixaGenerateFontFromString: pix not made
Error in bmfCreate: font pixa not made
Tesseract Open Source OCR Engine v4.1.1 with Leptonica
Error in pixReadStreamJpeg: function not present
Error in pixReadStream: jpeg: no pix returned
Error in pixRead: pix not read
Error during processing.
There must be something missing in the system, or in the build options.
--
You received this message because you are subscribed to the Google Groups
"tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tesseract-ocr/1a053bdf-3fea-4bc1-be95-8c582bb57e3c%40googlegroups.com.
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by leptonica configure 1.79.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure LDFLAGS=-L/usr/lib/x86_64-linux-gnu
## --------- ##
## Platform. ##
## --------- ##
hostname = redwire-tarisio-a
uname -m = x86_64
uname -r = 3.16.0-4-amd64
uname -s = Linux
uname -v = #1 SMP Debian 3.16.51-3 (2017-12-13)
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/lib/npm/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2418: checking build system type
configure:2432: result: x86_64-unknown-linux-gnu
configure:2452: checking host system type
configure:2465: result: x86_64-unknown-linux-gnu
configure:2506: checking how to print strings
configure:2533: result: printf
configure:2605: checking for gcc
configure:2621: found /usr/bin/gcc
configure:2632: result: gcc
configure:2861: checking for C compiler version
configure:2870: gcc --version >&5
gcc (Debian 4.9.2-10+deb8u2) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2881: $? = 0
configure:2870: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Debian 4.9.2-10+deb8u2)
configure:2881: $? = 0
configure:2870: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:2881: $? = 4
configure:2870: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:2881: $? = 4
configure:2901: checking whether the C compiler works
configure:2923: gcc -L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:2927: $? = 0
configure:2975: result: yes
configure:2978: checking for C compiler default output file name
configure:2980: result: a.out
configure:2986: checking for suffix of executables
configure:2993: gcc -o conftest -L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:2997: $? = 0
configure:3019: result:
configure:3041: checking whether we are cross compiling
configure:3049: gcc -o conftest -L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:3053: $? = 0
configure:3060: ./conftest
configure:3064: $? = 0
configure:3079: result: no
configure:3084: checking for suffix of object files
configure:3106: gcc -c conftest.c >&5
configure:3110: $? = 0
configure:3131: result: o
configure:3135: checking whether we are using the GNU C compiler
configure:3154: gcc -c conftest.c >&5
configure:3154: $? = 0
configure:3163: result: yes
configure:3172: checking whether gcc accepts -g
configure:3192: gcc -c -g conftest.c >&5
configure:3192: $? = 0
configure:3233: result: yes
configure:3250: checking for gcc option to accept ISO C89
configure:3313: gcc -c -g -O2 conftest.c >&5
configure:3313: $? = 0
configure:3326: result: none needed
configure:3351: checking whether gcc understands -c and -o together
configure:3373: gcc -c conftest.c -o conftest2.o
configure:3376: $? = 0
configure:3373: gcc -c conftest.c -o conftest2.o
configure:3376: $? = 0
configure:3388: result: yes
configure:3405: checking for a sed that does not truncate output
configure:3469: result: /bin/sed
configure:3487: checking for grep that handles long lines and -e
configure:3545: result: /bin/grep
configure:3550: checking for egrep
configure:3612: result: /bin/grep -E
configure:3617: checking for fgrep
configure:3679: result: /bin/grep -F
configure:3714: checking for ld used by gcc
configure:3781: result: /usr/bin/ld
configure:3788: checking if the linker (/usr/bin/ld) is GNU ld
configure:3803: result: yes
configure:3815: checking for BSD- or MS-compatible name lister (nm)
configure:3864: result: /usr/bin/nm -B
configure:3994: checking the name lister (/usr/bin/nm -B) interface
configure:4001: gcc -c -g -O2 conftest.c >&5
configure:4004: /usr/bin/nm -B "conftest.o"
configure:4007: output
0000000000000000 B some_variable
configure:4014: result: BSD nm
configure:4017: checking whether ln -s works
configure:4021: result: yes
configure:4029: checking the maximum length of command line arguments
configure:4160: result: 1572864
configure:4177: checking whether the shell understands some XSI constructs
configure:4187: result: yes
configure:4191: checking whether the shell understands "+="
configure:4197: result: yes
configure:4232: checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format
configure:4272: result: func_convert_file_noop
configure:4279: checking how to convert x86_64-unknown-linux-gnu file names to
toolchain format
configure:4299: result: func_convert_file_noop
configure:4306: checking for /usr/bin/ld option to reload object files
configure:4313: result: -r
configure:4387: checking for objdump
configure:4403: found /usr/bin/objdump
configure:4414: result: objdump
configure:4446: checking how to recognize dependent libraries
configure:4644: result: pass_all
configure:4729: checking for dlltool
configure:4759: result: no
configure:4789: checking how to associate runtime and link libraries
configure:4816: result: printf %s\n
configure:4877: checking for ar
configure:4893: found /usr/bin/ar
configure:4904: result: ar
configure:4941: checking for archiver @FILE support
configure:4958: gcc -c -g -O2 conftest.c >&5
configure:4958: $? = 0
configure:4961: ar cru libconftest.a @conftest.lst >&5
configure:4964: $? = 0
configure:4969: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:4972: $? = 1
configure:4984: result: @
configure:5042: checking for strip
configure:5058: found /usr/bin/strip
configure:5069: result: strip
configure:5141: checking for ranlib
configure:5157: found /usr/bin/ranlib
configure:5168: result: ranlib
configure:5245: checking for gawk
configure:5261: found /usr/bin/gawk
configure:5272: result: gawk
configure:5312: checking command to parse /usr/bin/nm -B output from gcc object
configure:5432: gcc -c -g -O2 conftest.c >&5
configure:5435: $? = 0
configure:5439: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' |
sed '/ __gnu_lto/d' \> conftest.nm
configure:5442: $? = 0
configure:5508: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
conftstm.o >&5
configure:5511: $? = 0
configure:5549: result: ok
configure:5586: checking for sysroot
configure:5616: result: no
configure:5693: gcc -c -g -O2 conftest.c >&5
configure:5696: $? = 0
configure:5885: checking for mt
configure:5901: found /bin/mt
configure:5912: result: mt
configure:5935: checking if mt is a manifest tool
configure:5941: mt '-?'
configure:5949: result: no
configure:6591: checking how to run the C preprocessor
configure:6622: gcc -E conftest.c
configure:6622: $? = 0
configure:6636: gcc -E conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:6636: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6661: result: gcc -E
configure:6681: gcc -E conftest.c
configure:6681: $? = 0
configure:6695: gcc -E conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:6695: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:6724: checking for ANSI C header files
configure:6744: gcc -c -g -O2 conftest.c >&5
configure:6744: $? = 0
configure:6817: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
>&5
configure:6817: $? = 0
configure:6817: ./conftest
configure:6817: $? = 0
configure:6828: result: yes
configure:6841: checking for sys/types.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for sys/stat.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for stdlib.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for string.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for memory.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for strings.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for inttypes.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for stdint.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6841: checking for unistd.h
configure:6841: gcc -c -g -O2 conftest.c >&5
configure:6841: $? = 0
configure:6841: result: yes
configure:6855: checking for dlfcn.h
configure:6855: gcc -c -g -O2 conftest.c >&5
configure:6855: $? = 0
configure:6855: result: yes
configure:7061: checking for objdir
configure:7076: result: .libs
configure:7347: checking if gcc supports -fno-rtti -fno-exceptions
configure:7365: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not
for C
configure:7369: $? = 0
configure:7382: result: no
configure:7709: checking for gcc option to produce PIC
configure:7716: result: -fPIC -DPIC
configure:7724: checking if gcc PIC flag -fPIC -DPIC works
configure:7742: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
configure:7746: $? = 0
configure:7759: result: yes
configure:7788: checking if gcc static flag -static works
configure:7816: result: yes
configure:7831: checking if gcc supports -c -o file.o
configure:7852: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:7856: $? = 0
configure:7878: result: yes
configure:7886: checking if gcc supports -c -o file.o
configure:7933: result: yes
configure:7966: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:9123: result: yes
configure:9160: checking whether -lc should be explicitly linked in
configure:9168: gcc -c -g -O2 conftest.c >&5
configure:9171: $? = 0
configure:9186: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname
-Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
configure:9189: $? = 0
configure:9203: result: no
configure:9363: checking dynamic linker characteristics
configure:9863: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu -Wl,-rpath
-Wl,/foo conftest.c >&5
configure:9863: $? = 0
configure:10097: result: GNU/Linux ld.so
configure:10204: checking how to hardcode library paths into programs
configure:10229: result: immediate
configure:10769: checking whether stripping libraries is possible
configure:10774: result: yes
configure:10809: checking if libtool supports shared libraries
configure:10811: result: yes
configure:10814: checking whether to build shared libraries
configure:10835: result: yes
configure:10838: checking whether to build static libraries
configure:10842: result: yes
configure:10896: checking for a BSD-compatible install
configure:10964: result: /usr/bin/install -c
configure:10975: checking whether build environment is sane
configure:11030: result: yes
configure:11178: checking for a thread-safe mkdir -p
configure:11217: result: /bin/mkdir -p
configure:11220: checking whether make sets $(MAKE)
configure:11242: result: yes
configure:11272: checking for style of include used by make
configure:11300: result: GNU
configure:11334: checking whether make supports nested variables
configure:11351: result: yes
configure:11436: checking dependency style of gcc
configure:11547: result: gcc3
configure:11618: checking for gawk
configure:11645: result: gawk
configure:11704: checking for gcc
configure:11731: result: gcc
configure:11960: checking for C compiler version
configure:11969: gcc --version >&5
gcc (Debian 4.9.2-10+deb8u2) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:11980: $? = 0
configure:11969: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Debian 4.9.2-10+deb8u2)
configure:11980: $? = 0
configure:11969: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:11980: $? = 4
configure:11969: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:11980: $? = 4
configure:11984: checking whether we are using the GNU C compiler
configure:12012: result: yes
configure:12021: checking whether gcc accepts -g
configure:12082: result: yes
configure:12099: checking for gcc option to accept ISO C89
configure:12175: result: none needed
configure:12200: checking whether gcc understands -c and -o together
configure:12237: result: yes
configure:12259: checking how to run the C preprocessor
configure:12329: result: gcc -E
configure:12349: gcc -E conftest.c
configure:12349: $? = 0
configure:12363: gcc -E conftest.c
conftest.c:23:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:12363: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:12393: checking whether ln -s works
configure:12397: result: yes
configure:12404: checking whether make sets $(MAKE)
configure:12426: result: yes
configure:12589: checking for cos in -lm
configure:12614: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-lm >&5
conftest.c:30:6: warning: conflicting types for built-in function 'cos'
char cos ();
^
configure:12614: $? = 0
configure:12623: result: yes
configure:12688: checking for pkg-config
configure:12706: found /usr/bin/pkg-config
configure:12718: result: /usr/bin/pkg-config
configure:12743: checking pkg-config is at least version 0.9.0
configure:12746: result: yes
configure:12764: checking for ZLIB
configure:12771: $PKG_CONFIG --exists --print-errors "zlib"
configure:12774: $? = 0
configure:12788: $PKG_CONFIG --exists --print-errors "zlib"
configure:12791: $? = 0
configure:12961: result: yes
configure:12982: checking for LIBPNG
configure:12989: $PKG_CONFIG --exists --print-errors "libpng"
configure:12992: $? = 0
configure:13006: $PKG_CONFIG --exists --print-errors "libpng"
configure:13009: $? = 0
configure:13179: result: yes
configure:13200: checking for JPEG
configure:13207: $PKG_CONFIG --exists --print-errors "libjpeg"
Package libjpeg was not found in the pkg-config search path.
Perhaps you should add the directory containing `libjpeg.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libjpeg' found
configure:13210: $? = 1
configure:13224: $PKG_CONFIG --exists --print-errors "libjpeg"
Package libjpeg was not found in the pkg-config search path.
Perhaps you should add the directory containing `libjpeg.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libjpeg' found
configure:13227: $? = 1
configure:13241: result: no
No package 'libjpeg' found
configure:13258: checking for jpeg_read_scanlines in -ljpeg
configure:13283: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-ljpeg >&5
/usr/bin/ld: cannot find -ljpeg
collect2: error: ld returned 1 exit status
configure:13283: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char jpeg_read_scanlines ();
| int
| main ()
| {
| return jpeg_read_scanlines ();
| ;
| return 0;
| }
configure:13292: result: no
configure:13300: checking jpeglib.h usability
configure:13300: gcc -c -g -O2 conftest.c >&5
conftest.c:58:21: fatal error: jpeglib.h: No such file or directory
#include <jpeglib.h>
^
compilation terminated.
configure:13300: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <jpeglib.h>
configure:13300: result: no
configure:13300: checking jpeglib.h presence
configure:13300: gcc -E conftest.c
conftest.c:25:21: fatal error: jpeglib.h: No such file or directory
#include <jpeglib.h>
^
compilation terminated.
configure:13300: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <jpeglib.h>
configure:13300: result: no
configure:13300: checking for jpeglib.h
configure:13300: result: no
configure:13416: checking for DGifOpenFileHandle in -lgif
configure:13441: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-lgif >&5
/usr/bin/ld: cannot find -lgif
collect2: error: ld returned 1 exit status
configure:13441: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char DGifOpenFileHandle ();
| int
| main ()
| {
| return DGifOpenFileHandle ();
| ;
| return 0;
| }
configure:13450: result: no
configure:13458: checking gif_lib.h usability
configure:13458: gcc -c -g -O2 conftest.c >&5
conftest.c:58:21: fatal error: gif_lib.h: No such file or directory
#include <gif_lib.h>
^
compilation terminated.
configure:13458: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gif_lib.h>
configure:13458: result: no
configure:13458: checking gif_lib.h presence
configure:13458: gcc -E conftest.c
conftest.c:25:21: fatal error: gif_lib.h: No such file or directory
#include <gif_lib.h>
^
compilation terminated.
configure:13458: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <gif_lib.h>
configure:13458: result: no
configure:13458: checking for gif_lib.h
configure:13458: result: no
configure:13534: checking for LIBTIFF
configure:13541: $PKG_CONFIG --exists --print-errors "libtiff-4"
Package libtiff-4 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libtiff-4.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libtiff-4' found
configure:13544: $? = 1
configure:13558: $PKG_CONFIG --exists --print-errors "libtiff-4"
Package libtiff-4 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libtiff-4.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libtiff-4' found
configure:13561: $? = 1
configure:13575: result: no
No package 'libtiff-4' found
configure:13592: checking for TIFFOpen in -ltiff
configure:13617: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-ltiff -lm -L/usr/lib/x86_64-linux-gnu -lz >&5
/usr/bin/ld: cannot find -ltiff
collect2: error: ld returned 1 exit status
configure:13617: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char TIFFOpen ();
| int
| main ()
| {
| return TIFFOpen ();
| ;
| return 0;
| }
configure:13626: result: no
configure:13634: checking tiff.h usability
configure:13634: gcc -c -g -O2 conftest.c >&5
conftest.c:58:18: fatal error: tiff.h: No such file or directory
#include <tiff.h>
^
compilation terminated.
configure:13634: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <tiff.h>
configure:13634: result: no
configure:13634: checking tiff.h presence
configure:13634: gcc -E conftest.c
conftest.c:25:18: fatal error: tiff.h: No such file or directory
#include <tiff.h>
^
compilation terminated.
configure:13634: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <tiff.h>
configure:13634: result: no
configure:13634: checking for tiff.h
configure:13634: result: no
configure:13752: checking for LIBWEBP
configure:13759: $PKG_CONFIG --exists --print-errors "libwebp"
Package libwebp was not found in the pkg-config search path.
Perhaps you should add the directory containing `libwebp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libwebp' found
configure:13762: $? = 1
configure:13776: $PKG_CONFIG --exists --print-errors "libwebp"
Package libwebp was not found in the pkg-config search path.
Perhaps you should add the directory containing `libwebp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libwebp' found
configure:13779: $? = 1
configure:13793: result: no
No package 'libwebp' found
configure:13810: checking for WebPGetInfo in -lwebp
configure:13835: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-lwebp -lm >&5
/usr/bin/ld: cannot find -lwebp
collect2: error: ld returned 1 exit status
configure:13835: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char WebPGetInfo ();
| int
| main ()
| {
| return WebPGetInfo ();
| ;
| return 0;
| }
configure:13844: result: no
configure:13852: checking webp/encode.h usability
configure:13852: gcc -c -g -O2 conftest.c >&5
conftest.c:58:25: fatal error: webp/encode.h: No such file or directory
#include <webp/encode.h>
^
compilation terminated.
configure:13852: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <webp/encode.h>
configure:13852: result: no
configure:13852: checking webp/encode.h presence
configure:13852: gcc -E conftest.c
conftest.c:25:25: fatal error: webp/encode.h: No such file or directory
#include <webp/encode.h>
^
compilation terminated.
configure:13852: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <webp/encode.h>
configure:13852: result: no
configure:13852: checking for webp/encode.h
configure:13852: result: no
configure:13979: checking for LIBWEBPMUX
configure:13986: $PKG_CONFIG --exists --print-errors "libwebpmux >= 0.5.0"
Package libwebpmux was not found in the pkg-config search path.
Perhaps you should add the directory containing `libwebpmux.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libwebpmux' found
configure:13989: $? = 1
configure:14003: $PKG_CONFIG --exists --print-errors "libwebpmux >= 0.5.0"
Package libwebpmux was not found in the pkg-config search path.
Perhaps you should add the directory containing `libwebpmux.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libwebpmux' found
configure:14006: $? = 1
configure:14020: result: no
No package 'libwebpmux' found
configure:14037: checking for WebPAnimEncoderOptionsInit in -lwebpmux
configure:14062: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-lwebpmux -lm >&5
/usr/bin/ld: cannot find -lwebpmux
collect2: error: ld returned 1 exit status
configure:14062: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char WebPAnimEncoderOptionsInit ();
| int
| main ()
| {
| return WebPAnimEncoderOptionsInit ();
| ;
| return 0;
| }
configure:14071: result: no
configure:14190: checking for LIBJP2K
configure:14197: $PKG_CONFIG --exists --print-errors "libopenjp2 >= 2.0.0"
Package libopenjp2 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libopenjp2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libopenjp2' found
configure:14200: $? = 1
configure:14214: $PKG_CONFIG --exists --print-errors "libopenjp2 >= 2.0.0"
Package libopenjp2 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libopenjp2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libopenjp2' found
configure:14217: $? = 1
configure:14231: result: no
No package 'libopenjp2' found
configure:14248: checking for opj_create_decompress in -lopenjp2
configure:14273: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu conftest.c
-lopenjp2 >&5
/usr/bin/ld: cannot find -lopenjp2
collect2: error: ld returned 1 exit status
configure:14273: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char opj_create_decompress ();
| int
| main ()
| {
| return opj_create_decompress ();
| ;
| return 0;
| }
configure:14282: result: no
configure:14293: checking openjpeg-2.3/openjpeg.h usability
configure:14293: gcc -c -g -O2 conftest.c >&5
conftest.c:58:35: fatal error: openjpeg-2.3/openjpeg.h: No such file or
directory
#include <openjpeg-2.3/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <openjpeg-2.3/openjpeg.h>
configure:14293: result: no
configure:14293: checking openjpeg-2.3/openjpeg.h presence
configure:14293: gcc -E conftest.c
conftest.c:25:35: fatal error: openjpeg-2.3/openjpeg.h: No such file or
directory
#include <openjpeg-2.3/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <openjpeg-2.3/openjpeg.h>
configure:14293: result: no
configure:14293: checking for openjpeg-2.3/openjpeg.h
configure:14293: result: no
configure:14293: checking openjpeg-2.2/openjpeg.h usability
configure:14293: gcc -c -g -O2 conftest.c >&5
conftest.c:58:35: fatal error: openjpeg-2.2/openjpeg.h: No such file or
directory
#include <openjpeg-2.2/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <openjpeg-2.2/openjpeg.h>
configure:14293: result: no
configure:14293: checking openjpeg-2.2/openjpeg.h presence
configure:14293: gcc -E conftest.c
conftest.c:25:35: fatal error: openjpeg-2.2/openjpeg.h: No such file or
directory
#include <openjpeg-2.2/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <openjpeg-2.2/openjpeg.h>
configure:14293: result: no
configure:14293: checking for openjpeg-2.2/openjpeg.h
configure:14293: result: no
configure:14293: checking openjpeg-2.1/openjpeg.h usability
configure:14293: gcc -c -g -O2 conftest.c >&5
conftest.c:58:35: fatal error: openjpeg-2.1/openjpeg.h: No such file or
directory
#include <openjpeg-2.1/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <openjpeg-2.1/openjpeg.h>
configure:14293: result: no
configure:14293: checking openjpeg-2.1/openjpeg.h presence
configure:14293: gcc -E conftest.c
conftest.c:25:35: fatal error: openjpeg-2.1/openjpeg.h: No such file or
directory
#include <openjpeg-2.1/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <openjpeg-2.1/openjpeg.h>
configure:14293: result: no
configure:14293: checking for openjpeg-2.1/openjpeg.h
configure:14293: result: no
configure:14293: checking openjpeg-2.0/openjpeg.h usability
configure:14293: gcc -c -g -O2 conftest.c >&5
conftest.c:58:35: fatal error: openjpeg-2.0/openjpeg.h: No such file or
directory
#include <openjpeg-2.0/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <openjpeg-2.0/openjpeg.h>
configure:14293: result: no
configure:14293: checking openjpeg-2.0/openjpeg.h presence
configure:14293: gcc -E conftest.c
conftest.c:25:35: fatal error: openjpeg-2.0/openjpeg.h: No such file or
directory
#include <openjpeg-2.0/openjpeg.h>
^
compilation terminated.
configure:14293: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <openjpeg-2.0/openjpeg.h>
configure:14293: result: no
configure:14293: checking for openjpeg-2.0/openjpeg.h
configure:14293: result: no
configure:14432: checking whether to enable debugging
configure:14439: result:
configure:14464: checking whether make supports nested variables
configure:14481: result: yes
configure:14494: checking for size_t
configure:14494: gcc -c -g -O2 conftest.c >&5
configure:14494: $? = 0
configure:14494: gcc -c -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:61:21: error: expected expression before ')' token
if (sizeof ((size_t)))
^
configure:14494: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((size_t)))
| return 0;
| ;
| return 0;
| }
configure:14494: result: yes
configure:14505: checking whether byte ordering is bigendian
configure:14520: gcc -c -g -O2 conftest.c >&5
conftest.c:26:9: error: unknown type name 'not'
not a universal capable compiler
^
conftest.c:26:15: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'universal'
not a universal capable compiler
^
conftest.c:26:15: error: unknown type name 'universal'
configure:14520: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #ifndef __APPLE_CC__
| not a universal capable compiler
| #endif
| typedef int dummy;
|
configure:14565: gcc -c -g -O2 conftest.c >&5
configure:14565: $? = 0
configure:14583: gcc -c -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:32:4: error: unknown type name 'not'
not big endian
^
conftest.c:32:12: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'endian'
not big endian
^
configure:14583: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "leptonica"
| #define PACKAGE_TARNAME "leptonica"
| #define PACKAGE_VERSION "1.79.0"
| #define PACKAGE_STRING "leptonica 1.79.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define PACKAGE "leptonica"
| #define VERSION "1.79.0"
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:14711: result: no
configure:14743: checking whether compiler supports -Wl,--as-needed
configure:14759: gcc -o conftest -g -O2 -Wl,--as-needed
-L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:14759: $? = 0
configure:14760: result: yes
configure:14773: checking for fmemopen
configure:14773: gcc -o conftest -g -O2 -Wl,--as-needed
-L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:14773: $? = 0
configure:14773: result: yes
configure:14782: checking for fstatat
configure:14782: gcc -o conftest -g -O2 -Wl,--as-needed
-L/usr/lib/x86_64-linux-gnu conftest.c >&5
configure:14782: $? = 0
configure:14782: result: yes
configure:14813: checking whether ln -s works
configure:14817: result: yes
configure:14934: checking that generated files are newer than configure
configure:14940: result: done
configure:14984: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by leptonica config.status 1.79.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on redwire-tarisio-a
config.status:1127: creating Makefile
config.status:1127: creating src/endianness.h
config.status:1127: creating src/Makefile
config.status:1127: creating prog/Makefile
config.status:1127: creating lept.pc
config.status:1127: creating cmake/templates/LeptonicaConfig.cmake
config.status:1127: creating cmake/templates/LeptonicaConfig-version.cmake
config.status:1127: creating config_auto.h
config.status:1356: executing libtool commands
config.status:1356: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_JPEG_CFLAGS_set=
ac_cv_env_JPEG_CFLAGS_value=
ac_cv_env_JPEG_LIBS_set=
ac_cv_env_JPEG_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-L/usr/lib/x86_64-linux-gnu
ac_cv_env_LIBJP2K_CFLAGS_set=
ac_cv_env_LIBJP2K_CFLAGS_value=
ac_cv_env_LIBJP2K_LIBS_set=
ac_cv_env_LIBJP2K_LIBS_value=
ac_cv_env_LIBPNG_CFLAGS_set=
ac_cv_env_LIBPNG_CFLAGS_value=
ac_cv_env_LIBPNG_LIBS_set=
ac_cv_env_LIBPNG_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIBTIFF_CFLAGS_set=
ac_cv_env_LIBTIFF_CFLAGS_value=
ac_cv_env_LIBTIFF_LIBS_set=
ac_cv_env_LIBTIFF_LIBS_value=
ac_cv_env_LIBWEBPMUX_CFLAGS_set=
ac_cv_env_LIBWEBPMUX_CFLAGS_value=
ac_cv_env_LIBWEBPMUX_LIBS_set=
ac_cv_env_LIBWEBPMUX_LIBS_value=
ac_cv_env_LIBWEBP_CFLAGS_set=
ac_cv_env_LIBWEBP_CFLAGS_value=
ac_cv_env_LIBWEBP_LIBS_set=
ac_cv_env_LIBWEBP_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_ZLIB_CFLAGS_set=
ac_cv_env_ZLIB_CFLAGS_value=
ac_cv_env_ZLIB_LIBS_set=
ac_cv_env_ZLIB_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_fmemopen=yes
ac_cv_func_fstatat=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_gif_lib_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_jpeglib_h=no
ac_cv_header_memory_h=yes
ac_cv_header_openjpeg_2_0_openjpeg_h=no
ac_cv_header_openjpeg_2_1_openjpeg_h=no
ac_cv_header_openjpeg_2_2_openjpeg_h=no
ac_cv_header_openjpeg_2_3_openjpeg_h=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_tiff_h=no
ac_cv_header_unistd_h=yes
ac_cv_header_webp_encode_h=no
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_lib_gif_DGifOpenFileHandle=no
ac_cv_lib_jpeg_jpeg_read_scanlines=no
ac_cv_lib_m_cos=yes
ac_cv_lib_openjp2_opj_create_decompress=no
ac_cv_lib_tiff_TIFFOpen=no
ac_cv_lib_webp_WebPGetInfo=no
ac_cv_lib_webpmux_WebPAnimEncoderOptionsInit=no
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_type_size_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/
{\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/
{"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^
]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int
\1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
pkg_cv_LIBPNG_CFLAGS='-I/usr/include/libpng12 '
pkg_cv_LIBPNG_LIBS='-lpng12 '
pkg_cv_ZLIB_CFLAGS=
pkg_cv_ZLIB_LIBS='-L/usr/lib/x86_64-linux-gnu -lz '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /root/code/leptonica-1.79.0/config/missing aclocal-1.14'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='0'
AM_V='$(V)'
APPLE_UNIVERSAL_BUILD='0'
AR='ar'
AUTOCONF='${SHELL} /root/code/leptonica-1.79.0/config/missing autoconf'
AUTOHEADER='${SHELL} /root/code/leptonica-1.79.0/config/missing autoheader'
AUTOMAKE='${SHELL} /root/code/leptonica-1.79.0/config/missing automake-1.14'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_PROGRAMS_FALSE='#'
ENABLE_PROGRAMS_TRUE=''
ENDIANNESS='L_LITTLE_ENDIAN'
EXEEXT=''
FGREP='/bin/grep -F'
GDI_LIBS=''
GIFLIB_LIBS=''
GREP='/bin/grep'
HAVE_LIBGIF_FALSE=''
HAVE_LIBGIF_TRUE='#'
HAVE_LIBJP2K_FALSE=''
HAVE_LIBJP2K_TRUE='#'
HAVE_LIBWEBP_ANIM_FALSE=''
HAVE_LIBWEBP_ANIM_TRUE='#'
HAVE_LIBWEBP_FALSE=''
HAVE_LIBWEBP_TRUE='#'
INCLUDE_DIR='NONE/include/leptonica'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
JPEG_CFLAGS=''
JPEG_LIBS=''
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-Wl,--as-needed -L/usr/lib/x86_64-linux-gnu'
LIBJP2K_CFLAGS=''
LIBJP2K_LIBS=''
LIBM='-lm'
LIBOBJS=''
LIBPNG_CFLAGS='-I/usr/include/libpng12 '
LIBPNG_LIBS='-lpng12 '
LIBS=''
LIBTIFF_CFLAGS=''
LIBTIFF_LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBWEBPMUX_CFLAGS=''
LIBWEBPMUX_LIBS=''
LIBWEBP_CFLAGS=''
LIBWEBP_LIBS=''
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /root/code/leptonica-1.79.0/config/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='leptonica'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='leptonica'
PACKAGE_STRING='leptonica 1.79.0'
PACKAGE_TARNAME='leptonica'
PACKAGE_URL=''
PACKAGE_VERSION='1.79.0'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
VERSION='1.79.0'
VERSION_MAJOR=''
VERSION_MINOR=''
VERSION_PATCH=''
VERSION_PLAIN='1.79.0'
ZLIB_CFLAGS=''
ZLIB_LIBS='-L/usr/lib/x86_64-linux-gnu -lz '
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /root/code/leptonica-1.79.0/config/install-sh'
leptonica_OUTPUT_NAME='lept'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "leptonica"
#define PACKAGE_TARNAME "leptonica"
#define PACKAGE_VERSION "1.79.0"
#define PACKAGE_STRING "leptonica 1.79.0"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define PACKAGE "leptonica"
#define VERSION "1.79.0"
#define HAVE_LIBZ 1
#define HAVE_LIBPNG 1
#define HAVE_FMEMOPEN 1
configure: exit 0
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by tesseract configure 4.1.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure LDFLAGS=-L/usr/lib/x86_64-linux-gnu
## --------- ##
## Platform. ##
## --------- ##
hostname = redwire-tarisio-a
uname -m = x86_64
uname -r = 3.16.0-4-amd64
uname -s = Linux
uname -v = #1 SMP Debian 3.16.51-3 (2017-12-13)
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/lib/npm/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2592: checking for g++
configure:2608: found /usr/bin/g++
configure:2619: result: g++
configure:2646: checking for C++ compiler version
configure:2655: g++ --version >&5
g++ (Debian 4.9.2-10+deb8u2) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2666: $? = 0
configure:2655: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Debian 4.9.2-10+deb8u2)
configure:2666: $? = 0
configure:2655: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:2666: $? = 4
configure:2655: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'
g++: fatal error: no input files
compilation terminated.
configure:2666: $? = 4
configure:2686: checking whether the C++ compiler works
configure:2708: g++ -L/usr/lib/x86_64-linux-gnu conftest.cpp >&5
configure:2712: $? = 0
configure:2760: result: yes
configure:2763: checking for C++ compiler default output file name
configure:2765: result: a.out
configure:2771: checking for suffix of executables
configure:2778: g++ -o conftest -L/usr/lib/x86_64-linux-gnu conftest.cpp >&5
configure:2782: $? = 0
configure:2804: result:
configure:2826: checking whether we are cross compiling
configure:2834: g++ -o conftest -L/usr/lib/x86_64-linux-gnu conftest.cpp >&5
configure:2838: $? = 0
configure:2845: ./conftest
configure:2849: $? = 0
configure:2864: result: no
configure:2869: checking for suffix of object files
configure:2891: g++ -c conftest.cpp >&5
configure:2895: $? = 0
configure:2916: result: o
configure:2920: checking whether we are using the GNU C++ compiler
configure:2939: g++ -c conftest.cpp >&5
configure:2939: $? = 0
configure:2948: result: yes
configure:2957: checking whether g++ accepts -g
configure:2977: g++ -c -g conftest.cpp >&5
configure:2977: $? = 0
configure:3018: result: yes
configure:3101: checking for a BSD-compatible install
configure:3169: result: /usr/bin/install -c
configure:3180: checking whether build environment is sane
configure:3235: result: yes
configure:3386: checking for a thread-safe mkdir -p
configure:3425: result: /bin/mkdir -p
configure:3432: checking for gawk
configure:3448: found /usr/bin/gawk
configure:3459: result: gawk
configure:3470: checking whether make sets $(MAKE)
configure:3492: result: yes
configure:3522: checking for style of include used by make
configure:3550: result: GNU
configure:3584: checking whether make supports nested variables
configure:3601: result: yes
configure:3686: checking dependency style of g++
configure:3797: result: gcc3
configure:3914: checking for a sed that does not truncate output
configure:3978: result: /bin/sed
configure:3988: checking Major version
configure:3990: result: 4
configure:3992: checking Minor version
configure:3994: result: 1
configure:3996: checking Point version
configure:3998: result: 1
configure:4063: checking build system type
configure:4077: result: x86_64-unknown-linux-gnu
configure:4097: checking host system type
configure:4110: result: x86_64-unknown-linux-gnu
configure:4217: checking whether C++ compiler accepts
-Werror=unused-command-line-argument
configure:4236: g++ -c -g -O2 -Werror=unused-command-line-argument
conftest.cpp >&5
cc1plus: error: -Werror=unused-command-line-argument: no option
-Wunused-command-line-argument
configure:4236: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:4244: result: no
configure:4256: checking whether C++ compiler accepts -mavx
configure:4275: g++ -c -g -O2 -Werror -mavx conftest.cpp >&5
configure:4275: $? = 0
configure:4284: result: yes
configure:4302: checking whether C++ compiler accepts -mavx2
configure:4321: g++ -c -g -O2 -Werror -mavx2 conftest.cpp >&5
configure:4321: $? = 0
configure:4330: result: yes
configure:4348: checking whether C++ compiler accepts -mfma
configure:4367: g++ -c -g -O2 -Werror -mfma conftest.cpp >&5
configure:4367: $? = 0
configure:4376: result: yes
configure:4394: checking whether C++ compiler accepts -msse4.1
configure:4413: g++ -c -g -O2 -Werror -msse4.1 conftest.cpp >&5
configure:4413: $? = 0
configure:4422: result: yes
configure:4440: checking whether C++ compiler accepts -march=native
configure:4459: g++ -c -g -O2 -Werror -march=native conftest.cpp >&5
configure:4459: $? = 0
configure:4468: result: yes
configure:4507: checking --enable-graphics argument
configure:4514: result:
configure:4530: checking --enable-legacy argument
configure:4537: result:
configure:4557: checking for g++ option to support OpenMP
configure:4572: g++ -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu
conftest.cpp >&5
conftest.cpp:17:2: error: 'choke' does not name a type
choke me
^
In file included from conftest.cpp:19:0:
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:38:3: error: 'omp_lock_t' does
not name a type
} omp_lock_t;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:85:28: error: variable or field
'omp_init_lock' declared void
extern void omp_init_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:85:28: error: 'omp_lock_t' was
not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:85:40: error: expected
primary-expression before ')' token
extern void omp_init_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:86:31: error: variable or field
'omp_destroy_lock' declared void
extern void omp_destroy_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:86:31: error: 'omp_lock_t' was
not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:86:43: error: expected
primary-expression before ')' token
extern void omp_destroy_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:87:27: error: variable or field
'omp_set_lock' declared void
extern void omp_set_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:87:27: error: 'omp_lock_t' was
not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:87:39: error: expected
primary-expression before ')' token
extern void omp_set_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:88:29: error: variable or field
'omp_unset_lock' declared void
extern void omp_unset_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:88:29: error: 'omp_lock_t' was
not declared in this scope
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:88:41: error: expected
primary-expression before ')' token
extern void omp_unset_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:89:27: error: 'omp_lock_t' was
not declared in this scope
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:89:39: error: expected
primary-expression before ')' token
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
/usr/lib/gcc/x86_64-linux-gnu/4.9/include/omp.h:89:41: error: expected ',' or
';' before 'throw'
extern int omp_test_lock (omp_lock_t *) __GOMP_NOTHROW;
^
configure:4572: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| /* end confdefs.h. */
|
| #ifndef _OPENMP
| choke me
| #endif
| #include <omp.h>
| int main () { return omp_get_num_threads (); }
|
configure:4590: g++ -o conftest -g -O2 -fopenmp -L/usr/lib/x86_64-linux-gnu
conftest.cpp >&5
configure:4590: $? = 0
configure:4604: result: -fopenmp
configure:4623: checking how to run the C++ preprocessor
configure:4650: g++ -E conftest.cpp
configure:4650: $? = 0
configure:4664: g++ -E conftest.cpp
conftest.cpp:15:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:4664: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4689: result: g++ -E
configure:4709: g++ -E conftest.cpp
configure:4709: $? = 0
configure:4723: g++ -E conftest.cpp
conftest.cpp:15:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:4723: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4752: checking for grep that handles long lines and -e
configure:4810: result: /bin/grep
configure:4815: checking for egrep
configure:4877: result: /bin/grep -E
configure:4882: checking for ANSI C header files
configure:4902: g++ -c -g -O2 conftest.cpp >&5
configure:4902: $? = 0
configure:4975: g++ -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu
conftest.cpp >&5
configure:4975: $? = 0
configure:4975: ./conftest
configure:4975: $? = 0
configure:4986: result: yes
configure:4999: checking for sys/types.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for sys/stat.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for stdlib.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for string.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for memory.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for strings.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for inttypes.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for stdint.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:4999: checking for unistd.h
configure:4999: g++ -c -g -O2 conftest.cpp >&5
configure:4999: $? = 0
configure:4999: result: yes
configure:5013: checking tiffio.h usability
configure:5013: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp:58:20: fatal error: tiffio.h: No such file or directory
#include <tiffio.h>
^
compilation terminated.
configure:5013: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <tiffio.h>
configure:5013: result: no
configure:5013: checking tiffio.h presence
configure:5013: g++ -E conftest.cpp
conftest.cpp:25:20: fatal error: tiffio.h: No such file or directory
#include <tiffio.h>
^
compilation terminated.
configure:5013: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <tiffio.h>
configure:5013: result: no
configure:5013: checking for tiffio.h
configure:5013: result: no
configure:5027: checking --enable-opencl argument
configure:5034: result:
configure:5092: checking tensorflow/core/framework/graph.pb.h usability
configure:5092: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp:58:48: fatal error: tensorflow/core/framework/graph.pb.h: No such
file or directory
#include <tensorflow/core/framework/graph.pb.h>
^
compilation terminated.
configure:5092: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <tensorflow/core/framework/graph.pb.h>
configure:5092: result: no
configure:5092: checking tensorflow/core/framework/graph.pb.h presence
configure:5092: g++ -E conftest.cpp
conftest.cpp:25:48: fatal error: tensorflow/core/framework/graph.pb.h: No such
file or directory
#include <tensorflow/core/framework/graph.pb.h>
^
compilation terminated.
configure:5092: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <tensorflow/core/framework/graph.pb.h>
configure:5092: result: no
configure:5092: checking for tensorflow/core/framework/graph.pb.h
configure:5092: result: no
configure:5253: checking --enable-visibility argument
configure:5260: result:
configure:5272: checking whether to use tessdata-prefix
configure:5281: result: yes
configure:5294: checking if compiling with clang
configure:5311: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:31:12: error: 'clang' was not declared in this scope
not clang
^
configure:5311: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| #ifndef __clang__
| not clang
| #endif
|
| ;
| return 0;
| }
configure:5317: result: no
configure:5321: checking whether to enable debugging
configure:5328: result:
configure:5364: checking whether byte ordering is bigendian
configure:5379: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp:26:9: error: expected unqualified-id before 'not' token
not a universal capable compiler
^
configure:5379: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #ifndef __APPLE_CC__
| not a universal capable compiler
| #endif
| typedef int dummy;
|
configure:5424: g++ -c -g -O2 conftest.cpp >&5
configure:5424: $? = 0
configure:5442: g++ -c -g -O2 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:32:8: error: 'big' was not declared in this scope
not big endian
^
configure:5442: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/param.h>
|
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
| not big endian
| #endif
|
| ;
| return 0;
| }
configure:5570: result: no
configure:5640: checking how to print strings
configure:5667: result: printf
configure:5736: checking for gcc
configure:5752: found /usr/bin/gcc
configure:5763: result: gcc
configure:5992: checking for C compiler version
configure:6001: gcc --version >&5
gcc (Debian 4.9.2-10+deb8u2) 4.9.2
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:6012: $? = 0
configure:6001: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.9.2-10+deb8u2'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix
--with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls
--with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug
--enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-vtable-verify
--enable-plugin --with-system-zlib --disable-browser-plugin
--enable-java-awt=gtk --enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre --enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar
--enable-objc-gc --enable-multiarch --with-arch-32=i586 --with-abi=m64
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu
--target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Debian 4.9.2-10+deb8u2)
configure:6012: $? = 0
configure:6001: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:6012: $? = 4
configure:6001: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:6012: $? = 4
configure:6016: checking whether we are using the GNU C compiler
configure:6035: gcc -c conftest.c >&5
configure:6035: $? = 0
configure:6044: result: yes
configure:6053: checking whether gcc accepts -g
configure:6073: gcc -c -g conftest.c >&5
configure:6073: $? = 0
configure:6114: result: yes
configure:6131: checking for gcc option to accept ISO C89
configure:6194: gcc -c -g -O2 conftest.c >&5
configure:6194: $? = 0
configure:6207: result: none needed
configure:6232: checking whether gcc understands -c and -o together
configure:6254: gcc -c conftest.c -o conftest2.o
configure:6257: $? = 0
configure:6254: gcc -c conftest.c -o conftest2.o
configure:6257: $? = 0
configure:6269: result: yes
configure:6288: checking dependency style of gcc
configure:6399: result: gcc3
configure:6414: checking for a sed that does not truncate output
configure:6478: result: /bin/sed
configure:6496: checking for fgrep
configure:6558: result: /bin/grep -F
configure:6593: checking for ld used by gcc
configure:6660: result: /usr/bin/ld
configure:6667: checking if the linker (/usr/bin/ld) is GNU ld
configure:6682: result: yes
configure:6694: checking for BSD- or MS-compatible name lister (nm)
configure:6743: result: /usr/bin/nm -B
configure:6873: checking the name lister (/usr/bin/nm -B) interface
configure:6880: g++ -c -g -O2 conftest.cpp >&5
configure:6883: /usr/bin/nm -B "conftest.o"
configure:6886: output
0000000000000000 B some_variable
configure:6893: result: BSD nm
configure:6896: checking whether ln -s works
configure:6900: result: yes
configure:6908: checking the maximum length of command line arguments
configure:7039: result: 1572864
configure:7056: checking whether the shell understands some XSI constructs
configure:7066: result: yes
configure:7070: checking whether the shell understands "+="
configure:7076: result: yes
configure:7111: checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format
configure:7151: result: func_convert_file_noop
configure:7158: checking how to convert x86_64-unknown-linux-gnu file names to
toolchain format
configure:7178: result: func_convert_file_noop
configure:7185: checking for /usr/bin/ld option to reload object files
configure:7192: result: -r
configure:7266: checking for objdump
configure:7282: found /usr/bin/objdump
configure:7293: result: objdump
configure:7325: checking how to recognize dependent libraries
configure:7523: result: pass_all
configure:7608: checking for dlltool
configure:7638: result: no
configure:7668: checking how to associate runtime and link libraries
configure:7695: result: printf %s\n
configure:7755: checking for ar
configure:7771: found /usr/bin/ar
configure:7782: result: ar
configure:7819: checking for archiver @FILE support
configure:7836: g++ -c -g -O2 conftest.cpp >&5
configure:7836: $? = 0
configure:7839: ar cru libconftest.a @conftest.lst >&5
configure:7842: $? = 0
configure:7847: ar cru libconftest.a @conftest.lst >&5
ar: conftest.o: No such file or directory
configure:7850: $? = 1
configure:7862: result: @
configure:7920: checking for strip
configure:7936: found /usr/bin/strip
configure:7947: result: strip
configure:8019: checking for ranlib
configure:8035: found /usr/bin/ranlib
configure:8046: result: ranlib
configure:8148: checking command to parse /usr/bin/nm -B output from gcc object
configure:8268: g++ -c -g -O2 conftest.cpp >&5
configure:8271: $? = 0
configure:8275: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' |
sed '/ __gnu_lto/d' \> conftest.nm
configure:8278: $? = 0
configure:8344: g++ -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu
conftest.cpp conftstm.o >&5
configure:8347: $? = 0
configure:8385: result: ok
configure:8422: checking for sysroot
configure:8452: result: no
configure:8530: g++ -c -g -O2 conftest.cpp >&5
configure:8533: $? = 0
configure:8722: checking for mt
configure:8738: found /bin/mt
configure:8749: result: mt
configure:8772: checking if mt is a manifest tool
configure:8778: mt '-?'
configure:8786: result: no
configure:9425: checking for dlfcn.h
configure:9425: g++ -c -g -O2 conftest.cpp >&5
configure:9425: $? = 0
configure:9425: result: yes
configure:9641: checking for objdir
configure:9656: result: .libs
configure:9923: checking if gcc supports -fno-rtti -fno-exceptions
configure:9941: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not
for C
configure:9945: $? = 0
configure:9958: result: no
configure:10285: checking for gcc option to produce PIC
configure:10292: result: -fPIC -DPIC
configure:10300: checking if gcc PIC flag -fPIC -DPIC works
configure:10318: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
configure:10322: $? = 0
configure:10335: result: yes
configure:10364: checking if gcc static flag -static works
configure:10392: result: yes
configure:10407: checking if gcc supports -c -o file.o
configure:10428: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:10432: $? = 0
configure:10454: result: yes
configure:10462: checking if gcc supports -c -o file.o
configure:10509: result: yes
configure:10542: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:11699: result: yes
configure:11736: checking whether -lc should be explicitly linked in
configure:11744: gcc -c -g -O2 conftest.c >&5
configure:11747: $? = 0
configure:11762: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname
-Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
configure:11765: $? = 0
configure:11779: result: no
configure:11939: checking dynamic linker characteristics
configure:12439: gcc -o conftest -g -O2 -L/usr/lib/x86_64-linux-gnu -Wl,-rpath
-Wl,/foo conftest.c >&5
configure:12439: $? = 0
configure:12673: result: GNU/Linux ld.so
configure:12780: checking how to hardcode library paths into programs
configure:12805: result: immediate
configure:13345: checking whether stripping libraries is possible
configure:13350: result: yes
configure:13385: checking if libtool supports shared libraries
configure:13387: result: yes
configure:13390: checking whether to build shared libraries
configure:13411: result: yes
configure:13414: checking whether to build static libraries
configure:13418: result: yes
configure:13441: checking how to run the C++ preprocessor
configure:13507: result: g++ -E
configure:13527: g++ -E conftest.cpp
configure:13527: $? = 0
configure:13541: g++ -E conftest.cpp
conftest.cpp:27:28: fatal error: ac_nonexistent.h: No such file or directory
#include <ac_nonexistent.h>
^
compilation terminated.
configure:13541: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:13710: checking for ld used by g++
configure:13777: result: /usr/bin/ld -m elf_x86_64
configure:13784: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:13799: result: yes
configure:13854: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:14856: result: yes
configure:14892: g++ -c -g -O2 conftest.cpp >&5
configure:14895: $? = 0
configure:15415: checking for g++ option to produce PIC
configure:15422: result: -fPIC -DPIC
configure:15430: checking if g++ PIC flag -fPIC -DPIC works
configure:15448: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:15452: $? = 0
configure:15465: result: yes
configure:15488: checking if g++ static flag -static works
configure:15516: result: yes
configure:15528: checking if g++ supports -c -o file.o
configure:15549: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
configure:15553: $? = 0
configure:15575: result: yes
configure:15580: checking if g++ supports -c -o file.o
configure:15627: result: yes
configure:15657: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64)
supports shared libraries
configure:15696: result: yes
configure:15837: checking dynamic linker characteristics
configure:16505: result: GNU/Linux ld.so
configure:16558: checking how to hardcode library paths into programs
configure:16583: result: immediate
configure:16652: checking whether C++ compiler accepts -std=c++11
configure:16671: g++ -c -g -O2 -Werror -std=c++11 conftest.cpp >&5
configure:16671: $? = 0
configure:16680: result: yes
configure:16689: checking whether C++ compiler accepts -std=c++14
configure:16708: g++ -c -g -O2 -Werror -std=c++14 conftest.cpp >&5
configure:16708: $? = 0
configure:16717: result: yes
configure:16726: checking whether C++ compiler accepts -std=c++17
configure:16745: g++ -c -g -O2 -Werror -std=c++17 conftest.cpp >&5
g++: error: unrecognized command line option '-std=c++17'
configure:16745: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:16754: result: no
configure:16790: checking for library containing pthread_create
configure:16821: g++ -o conftest -g -O2 -std=c++14 -L/usr/lib/x86_64-linux-gnu
conftest.cpp >&5
/tmp/ccwf3pVs.o: In function `main':
/root/code/tesseract-4.1.1/conftest.cpp:38: undefined reference to
`pthread_create'
collect2: error: ld returned 1 exit status
configure:16821: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char pthread_create ();
| int
| main ()
| {
| return pthread_create ();
| ;
| return 0;
| }
configure:16821: g++ -o conftest -g -O2 -std=c++14 -L/usr/lib/x86_64-linux-gnu
conftest.cpp -lpthread >&5
configure:16821: $? = 0
configure:16838: result: -lpthread
configure:16852: checking for ANSI C header files
configure:16956: result: yes
configure:16964: checking whether time.h and sys/time.h may both be included
configure:16984: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:16984: $? = 0
configure:16991: result: yes
configure:16999: checking for sys/wait.h that is POSIX.1 compatible
configure:17025: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17025: $? = 0
configure:17032: result: yes
configure:17043: checking sys/ipc.h usability
configure:17043: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17043: $? = 0
configure:17043: result: yes
configure:17043: checking sys/ipc.h presence
configure:17043: g++ -E conftest.cpp
configure:17043: $? = 0
configure:17043: result: yes
configure:17043: checking for sys/ipc.h
configure:17043: result: yes
configure:17043: checking sys/shm.h usability
configure:17043: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17043: $? = 0
configure:17043: result: yes
configure:17043: checking sys/shm.h presence
configure:17043: g++ -E conftest.cpp
configure:17043: $? = 0
configure:17043: result: yes
configure:17043: checking for sys/shm.h
configure:17043: result: yes
configure:17056: checking limits.h usability
configure:17056: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17056: $? = 0
configure:17056: result: yes
configure:17056: checking limits.h presence
configure:17056: g++ -E conftest.cpp
configure:17056: $? = 0
configure:17056: result: yes
configure:17056: checking for limits.h
configure:17056: result: yes
configure:17056: checking malloc.h usability
configure:17056: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17056: $? = 0
configure:17056: result: yes
configure:17056: checking malloc.h presence
configure:17056: g++ -E conftest.cpp
configure:17056: $? = 0
configure:17056: result: yes
configure:17056: checking for malloc.h
configure:17056: result: yes
configure:17067: checking for stdbool.h that conforms to C99
configure:17134: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17134: $? = 0
configure:17141: result: yes
configure:17143: checking for _Bool
configure:17143: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:70:13: error: '_Bool' was not declared in this scope
if (sizeof (_Bool))
^
configure:17143: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof (_Bool))
| return 0;
| ;
| return 0;
| }
configure:17143: result: no
configure:17167: checking for asciidoc
configure:17195: result: false
configure:17205: checking for xsltproc
configure:17233: result: false
configure:17265: checking for wchar_t
configure:17265: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17265: $? = 0
configure:17265: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:40:14: error: expected primary-expression before 'wchar_t'
if (sizeof ((wchar_t)))
^
conftest.cpp:40:14: error: expected ')' before 'wchar_t'
conftest.cpp:41:14: error: expected ')' before ';' token
return 0;
^
conftest.cpp:41:14: error: expected ')' before ';' token
configure:17265: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDBOOL_H 1
| /* end confdefs.h. */
| #include "wchar.h"
|
| int
| main ()
| {
| if (sizeof ((wchar_t)))
| return 0;
| ;
| return 0;
| }
configure:17265: result: yes
configure:17276: checking for long long int
configure:17276: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17276: $? = 0
configure:17276: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:72:14: error: expected primary-expression before 'long'
if (sizeof ((long long int)))
^
conftest.cpp:72:14: error: expected ')' before 'long'
conftest.cpp:73:14: error: expected ')' before ';' token
return 0;
^
conftest.cpp:73:14: error: expected ')' before ';' token
configure:17276: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_WCHAR_T 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((long long int)))
| return 0;
| ;
| return 0;
| }
configure:17276: result: yes
configure:17286: checking for off_t
configure:17286: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17286: $? = 0
configure:17286: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:42:19: error: expected primary-expression before ')' token
if (sizeof ((off_t)))
^
configure:17286: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_WCHAR_T 1
| #define HAVE_LONG_LONG_INT 1
| /* end confdefs.h. */
| #include "sys/types.h"
|
| int
| main ()
| {
| if (sizeof ((off_t)))
| return 0;
| ;
| return 0;
| }
configure:17286: result: yes
configure:17297: checking for mbstate_t
configure:17297: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
configure:17297: $? = 0
configure:17297: g++ -c -g -O2 -std=c++14 conftest.cpp >&5
conftest.cpp: In function 'int main()':
conftest.cpp:43:23: error: expected primary-expression before ')' token
if (sizeof ((mbstate_t)))
^
configure:17297: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_TARNAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_STRING "tesseract 4.1.1"
| #define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
| #define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
| #define PACKAGE "tesseract"
| #define VERSION "4.1.1"
| #define PACKAGE_NAME "tesseract"
| #define PACKAGE_VERSION "4.1.1"
| #define PACKAGE_YEAR "2019"
| #define PACKAGE_DATE "12/27"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define STDC_HEADERS 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDBOOL_H 1
| #define HAVE_WCHAR_T 1
| #define HAVE_LONG_LONG_INT 1
| #define HAVE_OFF_T 1
| /* end confdefs.h. */
| #include "wchar.h"
|
| int
| main ()
| {
| if (sizeof ((mbstate_t)))
| return 0;
| ;
| return 0;
| }
configure:17297: result: yes
configure:17367: checking for pkg-config
configure:17385: found /usr/bin/pkg-config
configure:17397: result: /usr/bin/pkg-config
configure:17422: checking pkg-config is at least version 0.9.0
configure:17425: result: yes
configure:17435: checking for libcurl
configure:17442: $PKG_CONFIG --exists --print-errors "libcurl"
Package libcurl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libcurl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libcurl' found
configure:17445: $? = 1
configure:17459: $PKG_CONFIG --exists --print-errors "libcurl"
Package libcurl was not found in the pkg-config search path.
Perhaps you should add the directory containing `libcurl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libcurl' found
configure:17462: $? = 1
configure:17476: result: no
No package 'libcurl' found
configure:17515: checking for LEPTONICA
configure:17522: $PKG_CONFIG --exists --print-errors "lept >= 1.74"
configure:17525: $? = 0
configure:17539: $PKG_CONFIG --exists --print-errors "lept >= 1.74"
configure:17542: $? = 0
configure:17580: result: yes
configure:17592: checking for libarchive
configure:17599: $PKG_CONFIG --exists --print-errors "libarchive"
Package libarchive was not found in the pkg-config search path.
Perhaps you should add the directory containing `libarchive.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libarchive' found
configure:17602: $? = 1
configure:17616: $PKG_CONFIG --exists --print-errors "libarchive"
Package libarchive was not found in the pkg-config search path.
Perhaps you should add the directory containing `libarchive.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libarchive' found
configure:17619: $? = 1
configure:17633: result: no
No package 'libarchive' found
configure:17688: checking for ICU_UC
configure:17695: $PKG_CONFIG --exists --print-errors "icu-uc >= 52.1"
configure:17698: $? = 0
configure:17712: $PKG_CONFIG --exists --print-errors "icu-uc >= 52.1"
configure:17715: $? = 0
configure:17753: result: yes
configure:17759: checking for ICU_I18N
configure:17766: $PKG_CONFIG --exists --print-errors "icu-i18n >= 52.1"
configure:17769: $? = 0
configure:17783: $PKG_CONFIG --exists --print-errors "icu-i18n >= 52.1"
configure:17786: $? = 0
configure:17824: result: yes
configure:17850: checking for pango
configure:17857: $PKG_CONFIG --exists --print-errors "pango >= 1.22.0"
configure:17860: $? = 0
configure:17874: $PKG_CONFIG --exists --print-errors "pango >= 1.22.0"
configure:17877: $? = 0
configure:17915: result: yes
configure:17941: checking for cairo
configure:17948: $PKG_CONFIG --exists --print-errors "cairo"
configure:17951: $? = 0
configure:17965: $PKG_CONFIG --exists --print-errors "cairo"
configure:17968: $? = 0
configure:18006: result: yes
configure:18198: checking that generated files are newer than configure
configure:18204: result: done
configure:18352: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by tesseract config.status 4.1.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on redwire-tarisio-a
config.status:1262: creating Makefile
config.status:1262: creating tesseract.pc
config.status:1262: creating src/api/Makefile
config.status:1262: creating src/api/tess_version.h
config.status:1262: creating src/arch/Makefile
config.status:1262: creating src/ccmain/Makefile
config.status:1262: creating src/opencl/Makefile
config.status:1262: creating src/ccstruct/Makefile
config.status:1262: creating src/ccutil/Makefile
config.status:1262: creating src/classify/Makefile
config.status:1262: creating src/cutil/Makefile
config.status:1262: creating src/dict/Makefile
config.status:1262: creating src/lstm/Makefile
config.status:1262: creating src/textord/Makefile
config.status:1262: creating src/viewer/Makefile
config.status:1262: creating src/wordrec/Makefile
config.status:1262: creating tessdata/Makefile
config.status:1262: creating tessdata/configs/Makefile
config.status:1262: creating tessdata/tessconfigs/Makefile
config.status:1262: creating unittest/Makefile
config.status:1262: creating java/Makefile
config.status:1262: creating java/com/Makefile
config.status:1262: creating java/com/google/Makefile
config.status:1262: creating java/com/google/scrollview/Makefile
config.status:1262: creating java/com/google/scrollview/events/Makefile
config.status:1262: creating java/com/google/scrollview/ui/Makefile
config.status:1262: creating doc/Makefile
config.status:1262: creating src/training/Makefile
config.status:1262: creating config_auto.h
config.status:1491: executing depfiles commands
config.status:1491: executing libtool commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_ICU_I18N_CFLAGS_set=
ac_cv_env_ICU_I18N_CFLAGS_value=
ac_cv_env_ICU_I18N_LIBS_set=
ac_cv_env_ICU_I18N_LIBS_value=
ac_cv_env_ICU_UC_CFLAGS_set=
ac_cv_env_ICU_UC_CFLAGS_value=
ac_cv_env_ICU_UC_LIBS_set=
ac_cv_env_ICU_UC_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-L/usr/lib/x86_64-linux-gnu
ac_cv_env_LEPTONICA_CFLAGS_set=
ac_cv_env_LEPTONICA_CFLAGS_value=
ac_cv_env_LEPTONICA_LIBS_set=
ac_cv_env_LEPTONICA_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_cairo_CFLAGS_set=
ac_cv_env_cairo_CFLAGS_value=
ac_cv_env_cairo_LIBS_set=
ac_cv_env_cairo_LIBS_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_libarchive_CFLAGS_set=
ac_cv_env_libarchive_CFLAGS_value=
ac_cv_env_libarchive_LIBS_set=
ac_cv_env_libarchive_LIBS_value=
ac_cv_env_libcurl_CFLAGS_set=
ac_cv_env_libcurl_CFLAGS_value=
ac_cv_env_libcurl_LIBS_set=
ac_cv_env_libcurl_LIBS_value=
ac_cv_env_pango_CFLAGS_set=
ac_cv_env_pango_CFLAGS_value=
ac_cv_env_pango_LIBS_set=
ac_cv_env_pango_LIBS_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_ipc_h=yes
ac_cv_header_sys_shm_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_tensorflow_core_framework_graph_pb_h=no
ac_cv_header_tiffio_h=no
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_SED=/bin/sed
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_cxx_openmp=-fopenmp
ac_cv_prog_have_asciidoc=false
ac_cv_prog_have_xsltproc=false
ac_cv_prog_make_make_set=yes
ac_cv_search_pthread_create=-lpthread
ac_cv_type__Bool=no
ac_cv_type_long_long_int=yes
ac_cv_type_mbstate_t=yes
ac_cv_type_off_t=yes
ac_cv_type_wchar_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
ax_cv_check_cxxflags___Werror_unused_command_line_argument=no
ax_cv_check_cxxflags__march_native=yes
ax_cv_check_cxxflags__mavx2=yes
ax_cv_check_cxxflags__mavx=yes
ax_cv_check_cxxflags__mfma=yes
ax_cv_check_cxxflags__msse4_1=yes
ax_cv_check_cxxflags__std_cpp11=yes
ax_cv_check_cxxflags__std_cpp14=yes
ax_cv_check_cxxflags__std_cpp17=no
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[
]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/
{\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/
{"\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^
]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\)
\([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int
\1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
pkg_cv_ICU_I18N_CFLAGS=
pkg_cv_ICU_I18N_LIBS='-licui18n -licuuc -licudata '
pkg_cv_ICU_UC_CFLAGS=
pkg_cv_ICU_UC_LIBS='-licuuc -licudata '
pkg_cv_LEPTONICA_CFLAGS='-I/usr/local/include/leptonica '
pkg_cv_LEPTONICA_LIBS='-L/usr/local/lib -llept '
pkg_cv_cairo_CFLAGS='-I/usr/include/cairo -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
-I/usr/include/freetype2 -I/usr/include/libpng12 '
pkg_cv_cairo_LIBS='-lcairo '
pkg_cv_pango_CFLAGS='-pthread -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include '
pkg_cv_pango_LIBS='-lpango-1.0 -lgobject-2.0 -lglib-2.0 '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /root/code/tesseract-4.1.1/config/missing aclocal-1.14'
ADD_RT_FALSE='#'
ADD_RT_TRUE=''
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_CPPFLAGS=' -O2 -DNDEBUG'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_LDFLAGS=''
AM_V='$(V)'
AR='ar'
ASCIIDOC_FALSE=''
ASCIIDOC_TRUE='#'
AUTOCONF='${SHELL} /root/code/tesseract-4.1.1/config/missing autoconf'
AUTOHEADER='${SHELL} /root/code/tesseract-4.1.1/config/missing autoheader'
AUTOMAKE='${SHELL} /root/code/tesseract-4.1.1/config/missing automake-1.14'
AVX2_OPT_FALSE='#'
AVX2_OPT_TRUE=''
AVX_OPT_FALSE='#'
AVX_OPT_TRUE=''
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPPFLAGS=' -I/usr/local/include/leptonica -pthread -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/cairo -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
-I/usr/include/freetype2 -I/usr/include/libpng12 '
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2 -std=c++14'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DISABLED_LEGACY_ENGINE_FALSE=''
DISABLED_LEGACY_ENGINE_TRUE='#'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_TRAINING_FALSE='#'
ENABLE_TRAINING_TRUE=''
EXEEXT=''
FGREP='/bin/grep -F'
FMA_OPT_FALSE='#'
FMA_OPT_TRUE=''
FRAMEWORK_OPENCL=''
GENERIC_API_VERSION='4.1'
GENERIC_LIBRARY_NAME='tesseract'
GENERIC_LIBRARY_VERSION='4:1'
GENERIC_MAJOR_VERSION='4'
GENERIC_MICRO_VERSION='1'
GENERIC_MINOR_VERSION='1'
GENERIC_RELEASE='4.1'
GENERIC_VERSION='4.1.1'
GRAPHICS_DISABLED_FALSE=''
GRAPHICS_DISABLED_TRUE='#'
GREP='/bin/grep'
HAVE_LIBARCHIVE_FALSE=''
HAVE_LIBARCHIVE_TRUE='#'
HAVE_LIBCURL_FALSE=''
HAVE_LIBCURL_TRUE='#'
ICU_I18N_CFLAGS=''
ICU_I18N_LIBS='-licui18n -licuuc -licudata '
ICU_UC_CFLAGS=''
ICU_UC_LIBS='-licuuc -licudata '
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-L/usr/lib/x86_64-linux-gnu'
LEPTONICA_CFLAGS='-I/usr/local/include/leptonica '
LEPTONICA_LIBS='-L/usr/local/lib -llept '
LIBOBJS=''
LIBS='-lpthread '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /root/code/tesseract-4.1.1/config/missing makeinfo'
MANIFEST_TOOL=':'
MARCH_NATIVE_OPT_FALSE='#'
MARCH_NATIVE_OPT_TRUE=''
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
NMEDIT=''
NOUNDEFINED=''
NO_TESSDATA_PREFIX_FALSE=''
NO_TESSDATA_PREFIX_TRUE='#'
OBJDUMP='objdump'
OBJEXT='o'
OPENCL_CPPFLAGS=''
OPENCL_LDFLAGS=''
OPENMP_CXXFLAGS='-fopenmp'
OSX_FALSE=''
OSX_TRUE='#'
OTOOL64=''
OTOOL=''
PACKAGE='tesseract'
PACKAGE_BUGREPORT='https://github.com/tesseract-ocr/tesseract/issues'
PACKAGE_DATE='12/27'
PACKAGE_NAME='tesseract'
PACKAGE_STRING='tesseract 4.1.1'
PACKAGE_TARNAME='tesseract'
PACKAGE_URL='https://github.com/tesseract-ocr/tesseract/'
PACKAGE_VERSION='4.1.1'
PACKAGE_YEAR='2019'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
RANLIB='ranlib'
SED='/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
SSE41_OPT_FALSE='#'
SSE41_OPT_TRUE=''
STRIP='strip'
TENSORFLOW_FALSE=''
TENSORFLOW_LIBS=''
TENSORFLOW_TRUE='#'
T_WIN_FALSE=''
T_WIN_TRUE='#'
USE_OPENCL_FALSE=''
USE_OPENCL_TRUE='#'
VERSION='4.1.1'
VISIBILITY_FALSE=''
VISIBILITY_TRUE='#'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep='_no'
am__quote=''
am__tar='$${TAR-tar} chof - "$$tardir"'
am__untar='$${TAR-tar} xf -'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
cairo_CFLAGS='-I/usr/include/cairo -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1
-I/usr/include/freetype2 -I/usr/include/libpng12 '
cairo_LIBS='-lcairo '
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
have_asciidoc='false'
have_xsltproc='false'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /root/code/tesseract-4.1.1/config/install-sh'
libarchive_CFLAGS=''
libarchive_LIBS=''
libcurl_CFLAGS=''
libcurl_LIBS=''
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pango_CFLAGS='-pthread -I/usr/include/pango-1.0 -I/usr/include/glib-2.0
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include '
pango_LIBS='-lpango-1.0 -lgobject-2.0 -lglib-2.0 '
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "tesseract"
#define PACKAGE_TARNAME "tesseract"
#define PACKAGE_VERSION "4.1.1"
#define PACKAGE_STRING "tesseract 4.1.1"
#define PACKAGE_BUGREPORT "https://github.com/tesseract-ocr/tesseract/issues"
#define PACKAGE_URL "https://github.com/tesseract-ocr/tesseract/"
#define PACKAGE "tesseract"
#define VERSION "4.1.1"
#define PACKAGE_NAME "tesseract"
#define PACKAGE_VERSION "4.1.1"
#define PACKAGE_YEAR "2019"
#define PACKAGE_DATE "12/27"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_SYS_IPC_H 1
#define HAVE_SYS_SHM_H 1
#define HAVE_LIMITS_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STDBOOL_H 1
#define HAVE_WCHAR_T 1
#define HAVE_LONG_LONG_INT 1
#define HAVE_OFF_T 1
#define HAVE_MBSTATE_T 1
configure: exit 0