You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ji...@apache.org on 2022/12/19 16:06:35 UTC

svn commit: r1906087 - in /openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6: build_aoo32bit_on_fed19.sh config.log

Author: jim
Date: Mon Dec 19 16:06:34 2022
New Revision: 1906087

URL: http://svn.apache.org/viewvc?rev=1906087&view=rev
Log:
Linux 32 for AOO 4.2.0-Dev4

Added:
    openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh   (with props)
    openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/config.log

Added: openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh?rev=1906087&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh Mon Dec 19 16:06:34 2022
@@ -0,0 +1,111 @@
+#!/usr/bin/env bash
+#
+# Installed in /usr/local:
+#   o dmake 4.13.1 (https://github.com/jimjag/dmake/archive/v4.13.1/dmake-4.13.1.tar.gz)
+#   o epm 5.0.0 (https://github.com/jimjag/epm/archive/v5.0.0/epm-5.0.0.tar.gz)
+
+set -eo pipefail
+
+ANT_HOME=/usr/local/share/java/apache-ant
+ANT_CLASSPATH=/usr/local/share/java/apache-ant/lib
+export ANT_HOME
+export ANT_CLASSPATH
+
+#
+# Parse options
+#
+AOO_SKIP_CONFIG=
+AOO_JUST_CONFIG=
+AOO_VERBOSE_BUILD=
+AOO_BUILD_TYPE=
+AOO_BUILD_VERSION=
+AOO_BUILD_BETA=
+AOO_BUILD_DEV=
+AOO_BUILD_SRC=
+
+while true; do
+  case "$1" in
+    "--verbose" ) AOO_VERBOSE_BUILD="--enable-verbose"; shift ;;
+    "--skip-config" ) AOO_SKIP_CONFIG="yes"; shift ;;
+    "--just-config" ) AOO_JUST_CONFIG="yes"; shift ;;
+	"--build-src" ) AOO_BUILD_SRC="yes"; shift ;;
+    "--dev" ) AOO_BUILD_TYPE="Apache OpenOffice Test Development Build"; AOO_BUILD_VERSION=" [${AOO_BUILD_TYPE}]"; AOO_BUILD_DEV="yes"; AOO_BUILD_BETA=""; shift ;;
+    "--beta" ) AOO_BUILD_TYPE="Apache OpenOffice Beta Build"; AOO_BUILD_VERSION=" [${AOO_BUILD_TYPE}]"; AOO_BUILD_BETA="yes"; AOO_BUILD_DEV=""; shift ;;
+    "--" ) shift; break ;;
+    "" ) break ;;
+    * ) echo "unknown option: $1"; shift ;;
+  esac
+done
+
+if [ ! -d ../main -o ! -d sal ] ; then
+	echo "CHDIR into AOO's main/ directory first!"
+	exit 1
+fi
+\rm -f solenv/inc/reporevision.lst
+if [ ! -e external/unowinreg/unowinreg.dll ] ; then
+	echo "Downloading unowinreg.dll..."
+    wget -O external/unowinreg/unowinreg.dll http://www.openoffice.org/tools/unowinreg_prebuild/680/unowinreg.dll
+fi
+
+LANGS="ast bg ca ca-XR ca-XV cs da de el en-GB en-US es et eu fi fr gd gl he hi hu hy it ja kab km ko lt nb nl om pl pt pt-BR ru sk sl sr sv ta th tr uk vi zh-CN zh-TW"
+
+if [ -e configure.in ]; then
+    AOO_CONF_T="configure.in"
+else
+    AOO_CONF_T="configure.ac"
+fi
+if [ ! -e configure -o $AOO_CONF_T -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+
+if [ "$AOO_SKIP_CONFIG" != "yes" ]; then
+    ( ./configure   \
+	--with-build-version="$(date +"%Y-%m-%d %H:%M:%S (%a, %d %b %Y)") - `uname -sm`${AOO_BUILD_VERSION}" \
+	${AOO_VERBOSE_BUILD} \
+	--with-system-stdlibs \
+	--enable-crashdump=yes \
+	--enable-category-b \
+	--enable-beanshell \
+	--enable-wiki-publisher \
+	--enable-bundled-dictionaries \
+	--enable-opengl  \
+	--enable-dbus  \
+	--enable-gstreamer \
+	--without-junit \
+	--without-stlport \
+	--with-ant-home=$ANT_HOME \
+	--with-jdk-home=/usr/lib/jvm/java-1.7.0-openjdk \
+	--with-package-format="rpm deb" \
+	--with-lang="${LANGS}" \
+        --with-epm=/usr/local/bin/epm \
+        --with-dmake-path=/usr/local/bin/dmake \
+	| tee config.out ) || exit 1
+fi
+
+source ./LinuxX86Env.Set.sh || exit 1 
+./bootstrap || exit 1
+if [ -e solenv/inc/reporevision.lst ]; then
+	rm solenv/inc/reporevision.lst
+fi
+cd instsetoo_native
+time perl "$SOLARENV/bin/build.pl" --all -- -P7 || exit 1
+cd util
+if [ "$AOO_BUILD_BETA" = "yes" ]; then
+    dmake -P7 openofficebeta  || exit 1
+	dmake -P7 sdkoobeta_en-US || exit 1
+	dmake -P7 ooobetalanguagepack || exit 1
+elif [ "$AOO_BUILD_DEV" = "yes" ]; then
+    dmake -P7 openofficedev  || exit 1
+	dmake -P7 sdkoodev_en-US || exit 1
+	dmake -P7 ooodevlanguagepack || exit 1
+else
+	dmake -P7 ooolanguagepack || exit 1
+	dmake -P7 sdkoo_en-US || exit 1 
+fi
+if [ "$AOO_BUILD_SRC" = "yes" ]; then
+	dmake aoo_srcrelease || exit 1
+fi
+
+date "+Build ended at %H:%M:%S"
+

Propchange: openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/build_aoo32bit_on_fed19.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/config.log
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/config.log?rev=1906087&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/config.log (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev4/unxlngi6/config.log Mon Dec 19 16:06:34 2022
@@ -0,0 +1,1755 @@
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by configure, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  $ ./configure --with-build-version=2022-12-19 11:04:33 (Mon, 19 Dec 2022) - Linux i686 --with-system-stdlibs --enable-crashdump=yes --enable-category-b --enable-beanshell --enable-wiki-publisher --enable-bundled-dictionaries --enable-opengl --enable-dbus --enable-gstreamer --without-junit --without-stlport --with-ant-home=/usr/local/share/java/apache-ant --with-jdk-home=/usr/lib/jvm/java-1.7.0-openjdk --with-package-format=rpm deb --with-lang=ast bg ca ca-XR ca-XV cs da de el en-GB en-US es et eu fi fr gd gl he hi hu hy it ja kab km ko lt nb nl om pl pt pt-BR ru sk sl sr sv ta th tr uk vi zh-CN zh-TW --with-epm=/usr/local/bin/epm --with-dmake-path=/usr/local/bin/dmake
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = aoo-builder32-fedora19.localdomain
+uname -m = i686
+uname -r = 3.14.27-100.fc19.i686.PAE
+uname -s = Linux
+uname -v = #1 SMP Wed Dec 17 19:56:19 UTC 2014
+
+/usr/bin/uname -p = i686
+/bin/uname -X     = unknown
+
+/bin/arch              = i686
+/usr/bin/arch -k       = unknown
+/usr/convex/getsysinfo = unknown
+/usr/bin/hostinfo      = unknown
+/bin/machine           = unknown
+/usr/bin/oslevel       = unknown
+/bin/universe          = unknown
+
+PATH: /home/jim/bin
+PATH: /opt/local/bin
+PATH: /opt/local/sbin
+PATH: /usr/lib/ccache
+PATH: /usr/local/bin
+PATH: /usr/bin
+PATH: /bin
+PATH: /Users/jim/Library/Application Support/KomodoIDE/12.0/XRE/state
+PATH: .
+PATH: /home/jim/bin
+PATH: /usr/local/sbin
+PATH: /usr/sbin
+PATH: .
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:5174: checking whether configure is up-to-date
+configure:5181: result: yes
+configure:5208: checking for grep that handles long lines and -e
+configure:5266: result: /usr/bin/grep
+configure:5271: checking for egrep
+configure:5333: result: /usr/bin/grep -E
+configure:5345: checking for gawk
+configure:5361: found /usr/bin/gawk
+configure:5372: result: gawk
+configure:5385: checking for gawk
+configure:5403: found /usr/bin/gawk
+configure:5415: result: /usr/bin/gawk
+configure:5431: checking for sed
+configure:5449: found /usr/bin/sed
+configure:5461: result: /usr/bin/sed
+configure:5476: checking for solenv environment
+configure:5480: result: default
+configure:5507: checking for custom pack.lst
+configure:5521: result: no
+configure:5561: checking build system type
+configure:5575: result: i686-pc-linux-gnu
+configure:5595: checking host system type
+configure:5608: result: i686-pc-linux-gnu
+configure:5628: checking target system type
+configure:5641: result: i686-pc-linux-gnu
+configure:5952: checking for pkg-config
+configure:5970: found /usr/bin/pkg-config
+configure:5982: result: /usr/bin/pkg-config
+configure:6007: checking pkg-config is at least version 0.9.0
+configure:6010: result: yes
+configure:6020: checking whether to enable crashdump feature
+configure:6025: result: yes
+configure:6093: checking whether to turn warnings to errors
+configure:6106: result: no
+configure:6111: checking whether to do a debug build
+configure:6122: result: no
+configure:6127: checking whether to build with additional debug utilities
+configure:6139: result: no, full product build
+configure:6146: checking whether to include symbols into final build
+configure:6168: result: no
+configure:6173: checking whether to strip the solver or not.
+configure:6192: result: yes
+configure:6209: checking whether to enable category B components
+configure:6229: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, graphite, coinmp to be built
+configure:6249: checking whether to enable the Online Update support
+configure:6254: result: yes
+configure:6263: checking whether to enable unit tests
+configure:6268: result: yes
+configure:6277: checking whether to enable native CUPS support
+configure:6281: result: yes
+configure:6290: checking whether to enable fontconfig support
+configure:6294: result: yes
+configure:6359: checking whether to use RPATH in shared libraries
+configure:6366: result: yes
+configure:6387: checking whether to use dicts from external paths
+configure:6421: result: no
+configure:6470: checking for bash
+configure:6488: found /usr/bin/bash
+configure:6500: result: /usr/bin/bash
+configure:6515: checking gcc home
+configure:6522: result: /usr/lib/ccache/gcc
+configure:6584: checking for gcc
+configure:6600: found /usr/lib/ccache/gcc
+configure:6611: result: gcc
+configure:6840: checking for C compiler version
+configure:6849: gcc --version >&5
+gcc (GCC) 4.8.3 20140911 (Red Hat 4.8.3-7)
+Copyright (C) 2013 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:6860: $? = 0
+configure:6849: gcc -v >&5
+Using built-in specs.
+COLLECT_GCC=/usr/bin/gcc
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.8.3/lto-wrapper
+Target: i686-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-isl=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/cloog-install --with-tune=generic --with-arch=i686 --build=i686-redhat-linux
+Thread model: posix
+gcc version 4.8.3 20140911 (Red Hat 4.8.3-7) (GCC) 
+configure:6860: $? = 0
+configure:6849: gcc -V >&5
+gcc: error: unrecognized command line option '-V'
+gcc: fatal error: no input files
+compilation terminated.
+configure:6860: $? = 4
+configure:6849: gcc -qversion >&5
+gcc: error: unrecognized command line option '-qversion'
+gcc: fatal error: no input files
+compilation terminated.
+configure:6860: $? = 4
+configure:6880: checking whether the C compiler works
+configure:6902: gcc    conftest.c  >&5
+configure:6906: $? = 0
+configure:6954: result: yes
+configure:6957: checking for C compiler default output file name
+configure:6959: result: a.out
+configure:6965: checking for suffix of executables
+configure:6972: gcc -o conftest    conftest.c  >&5
+configure:6976: $? = 0
+configure:6998: result: 
+configure:7020: checking whether we are cross compiling
+configure:7028: gcc -o conftest    conftest.c  >&5
+configure:7032: $? = 0
+configure:7039: ./conftest
+configure:7043: $? = 0
+configure:7058: result: no
+configure:7063: checking for suffix of object files
+configure:7085: gcc -c   conftest.c >&5
+configure:7089: $? = 0
+configure:7110: result: o
+configure:7114: checking whether we are using the GNU C compiler
+configure:7133: gcc -c   conftest.c >&5
+configure:7133: $? = 0
+configure:7142: result: yes
+configure:7151: checking whether gcc accepts -g
+configure:7171: gcc -c -g  conftest.c >&5
+configure:7171: $? = 0
+configure:7212: result: yes
+configure:7229: checking for gcc option to accept ISO C89
+configure:7292: gcc  -c -g -O2  conftest.c >&5
+configure:7292: $? = 0
+configure:7305: result: none needed
+configure:7333: checking for gcc
+configure:7351: found /usr/lib/ccache/gcc
+configure:7363: result: /usr/lib/ccache/gcc
+configure:7381: checking the GNU gcc compiler version
+configure:7400: result: checked (gcc 4.8.3)
+configure:7417: checking for -Bsymbolic-functions linker support 
+configure:7437: gcc -o conftest -g -O2   -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo conftest.c  >&5
+configure:7437: $? = 0
+configure:7443: result: found 
+configure:7453: checking whether to enable pch feature
+configure:7471: result: no
+configure:7476: checking for GNU make
+configure:7485: result: make
+configure:7491: checking the GNU make version
+configure:7496: result: make 3.82
+3+:
+configure:7503: checking for dmake
+configure:7559: looking for dmake at /usr/local/bin/dmake
+configure:7562: result: using user provided dmake
+configure:7585: checking whether the found dmake is the right dmake
+configure:7595: result: yes
+configure:7597: checking the dmake version
+configure:7605: result: OK, >= 4.11
+configure:7625: checking for GNU or compatible BSD tar
+configure:7634: result: gtar
+configure:7710: checking for --hash-style=both linker support 
+configure:7729: gcc -o conftest -g -O2   -Wl,--hash-style=both conftest.c  >&5
+configure:7729: $? = 0
+configure:7737: result: found 
+configure:7813: checking for perl
+configure:7831: found /usr/bin/perl
+configure:7843: result: /usr/bin/perl
+configure:7864: checking the Perl version
+configure:7871: result: checked (perl 5)
+configure:7878: checking for required Perl modules
+configure:7886: result: all modules found
+configure:8397: checking how to run the C preprocessor
+configure:8428: gcc -E  conftest.c
+configure:8428: $? = 0
+configure:8442: 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:8442: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:8467: result: gcc -E
+configure:8487: gcc -E  conftest.c
+configure:8487: $? = 0
+configure:8501: 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:8501: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:8530: checking for ANSI C header files
+configure:8550: gcc -c -g -O2  conftest.c >&5
+configure:8550: $? = 0
+configure:8623: gcc -o conftest -g -O2   conftest.c  >&5
+configure:8623: $? = 0
+configure:8623: ./conftest
+configure:8623: $? = 0
+configure:8634: result: yes
+configure:8703: checking for g++
+configure:8719: found /usr/lib/ccache/g++
+configure:8730: result: g++
+configure:8757: checking for C++ compiler version
+configure:8766: g++ --version >&5
+g++ (GCC) 4.8.3 20140911 (Red Hat 4.8.3-7)
+Copyright (C) 2013 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:8777: $? = 0
+configure:8766: g++ -v >&5
+Using built-in specs.
+COLLECT_GCC=/usr/bin/g++
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.8.3/lto-wrapper
+Target: i686-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-isl=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/cloog-install --with-tune=generic --with-arch=i686 --build=i686-redhat-linux
+Thread model: posix
+gcc version 4.8.3 20140911 (Red Hat 4.8.3-7) (GCC) 
+configure:8777: $? = 0
+configure:8766: g++ -V >&5
+g++: error: unrecognized command line option '-V'
+g++: fatal error: no input files
+compilation terminated.
+configure:8777: $? = 4
+configure:8766: g++ -qversion >&5
+g++: error: unrecognized command line option '-qversion'
+g++: fatal error: no input files
+compilation terminated.
+configure:8777: $? = 4
+configure:8781: checking whether we are using the GNU C++ compiler
+configure:8800: g++ -c   conftest.cpp >&5
+configure:8800: $? = 0
+configure:8809: result: yes
+configure:8818: checking whether g++ accepts -g
+configure:8838: g++ -c -g  conftest.cpp >&5
+configure:8838: $? = 0
+configure:8879: result: yes
+configure:8907: checking how to run the C++ preprocessor
+configure:8934: g++ -E  conftest.cpp
+configure:8934: $? = 0
+configure:8948: g++ -E  conftest.cpp
+conftest.cpp:10:28: fatal error: ac_nonexistent.h: No such file or directory
+ #include <ac_nonexistent.h>
+                            ^
+compilation terminated.
+configure:8948: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:8973: result: g++ -E
+configure:8993: g++ -E  conftest.cpp
+configure:8993: $? = 0
+configure:9007: g++ -E  conftest.cpp
+conftest.cpp:10:28: fatal error: ac_nonexistent.h: No such file or directory
+ #include <ac_nonexistent.h>
+                            ^
+compilation terminated.
+configure:9007: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:9044: checking how to run the C preprocessor
+configure:9114: result: gcc -E
+configure:9134: gcc -E  conftest.c
+configure:9134: $? = 0
+configure:9148: gcc -E  conftest.c
+conftest.c:10:28: fatal error: ac_nonexistent.h: No such file or directory
+ #include <ac_nonexistent.h>
+                            ^
+compilation terminated.
+configure:9148: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE_URL ""
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:9184: checking for sys/types.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for sys/stat.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for stdlib.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for string.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for memory.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for strings.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for inttypes.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for stdint.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9184: checking for unistd.h
+configure:9184: gcc -c -g -O2  conftest.c >&5
+configure:9184: $? = 0
+configure:9184: result: yes
+configure:9200: checking size of long
+configure:9205: gcc -o conftest -g -O2   conftest.c  >&5
+configure:9205: $? = 0
+configure:9205: ./conftest
+configure:9205: $? = 0
+configure:9219: result: 4
+configure:9231: checking whether byte ordering is bigendian
+configure:9246: gcc -c -g -O2  conftest.c >&5
+conftest.c:21:9: error: unknown type name 'not'
+         not a universal capable compiler
+         ^
+conftest.c:21:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
+         not a universal capable compiler
+               ^
+conftest.c:21:15: error: unknown type name 'universal'
+configure:9246: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #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 SIZEOF_LONG 4
+| /* end confdefs.h.  */
+| #ifndef __APPLE_CC__
+| 	       not a universal capable compiler
+| 	     #endif
+| 	     typedef int dummy;
+| 
+configure:9291: gcc -c -g -O2  conftest.c >&5
+configure:9291: $? = 0
+configure:9309: gcc -c -g -O2  conftest.c >&5
+conftest.c: In function 'main':
+conftest.c:27:4: error: unknown type name 'not'
+    not big endian
+    ^
+conftest.c:27:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
+    not big endian
+            ^
+configure:9309: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #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 SIZEOF_LONG 4
+| /* 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:9437: result: no
+configure:9465: checking for special C compiler options needed for large files
+configure:9510: result: no
+configure:9516: checking for _FILE_OFFSET_BITS value needed for large files
+configure:9541: gcc -c -g -O2  conftest.c >&5
+conftest.c:26:3: warning: left shift count >= width of type [enabled by default]
+   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+   ^
+conftest.c:26:3: warning: left shift count >= width of type [enabled by default]
+conftest.c:27:10: warning: left shift count >= width of type [enabled by default]
+          && LARGE_OFF_T % 2147483647 == 1)
+          ^
+conftest.c:27:10: warning: left shift count >= width of type [enabled by default]
+conftest.c:26:7: error: variably modified 'off_t_is_large' at file scope
+   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+       ^
+configure:9541: $? = 1
+configure: failed program was:
+| /* confdefs.h */
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #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 SIZEOF_LONG 4
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9565: gcc -c -g -O2  conftest.c >&5
+configure:9565: $? = 0
+configure:9573: result: 64
+configure:9705: checking cups/cups.h usability
+configure:9705: gcc -c -g -O2  conftest.c >&5
+configure:9705: $? = 0
+configure:9705: result: yes
+configure:9705: checking cups/cups.h presence
+configure:9705: gcc -E  conftest.c
+configure:9705: $? = 0
+configure:9705: result: yes
+configure:9705: checking for cups/cups.h
+configure:9705: result: yes
+configure:9716: checking whether to enable pam support
+configure:9719: result: yes
+configure:9722: checking security/pam_appl.h usability
+configure:9722: gcc -c -g -O2  conftest.c >&5
+configure:9722: $? = 0
+configure:9722: result: yes
+configure:9722: checking security/pam_appl.h presence
+configure:9722: gcc -E  conftest.c
+configure:9722: $? = 0
+configure:9722: result: yes
+configure:9722: checking for security/pam_appl.h
+configure:9722: result: yes
+configure:9730: checking whether to link to libpam
+configure:9784: result: no, dynamically open it
+configure:9801: checking whether to link to libcrypt
+configure:9804: result: yes
+configure:9807: checking for crypt in -lcrypt
+configure:9832: gcc -o conftest -g -O2   conftest.c -lcrypt   >&5
+configure:9832: $? = 0
+configure:9841: result: yes
+configure:9987: checking for C++ compiler version
+configure:9996: g++ --version >&5
+g++ (GCC) 4.8.3 20140911 (Red Hat 4.8.3-7)
+Copyright (C) 2013 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:10007: $? = 0
+configure:9996: g++ -v >&5
+Using built-in specs.
+COLLECT_GCC=/usr/bin/g++
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/i686-redhat-linux/4.8.3/lto-wrapper
+Target: i686-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-isl=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-i686-redhat-linux/cloog-install --with-tune=generic --with-arch=i686 --build=i686-redhat-linux
+Thread model: posix
+gcc version 4.8.3 20140911 (Red Hat 4.8.3-7) (GCC) 
+configure:10007: $? = 0
+configure:9996: g++ -V >&5
+g++: error: unrecognized command line option '-V'
+g++: fatal error: no input files
+compilation terminated.
+configure:10007: $? = 4
+configure:9996: g++ -qversion >&5
+g++: error: unrecognized command line option '-qversion'
+g++: fatal error: no input files
+compilation terminated.
+configure:10007: $? = 4
+configure:10011: checking whether we are using the GNU C++ compiler
+configure:10039: result: yes
+configure:10048: checking whether g++ accepts -g
+configure:10109: result: yes
+configure:10135: checking the GNU C++ compiler version
+configure:10141: result: checked (g++ 4.8.3)
+configure:10329: checking exception type
+configure:10364: result: 
+configure:10375: checking what the default STL should be
+configure:10387: checking whether gcc supports -fvisibility=hidden
+configure:10402: gcc -o conftest -g -O2 -fvisibility=hidden   conftest.c -lcrypt  >&5
+configure:10402: $? = 0
+configure:10409: result: yes
+configure:10420: checking whether we are allowed and able to use --ccache-skip
+configure:10423: result: only used on Mac currently, skipping
+configure:10671: checking which memory allocator to use
+configure:10819: result: internal
+configure:10825: checking whether to add custom build version
+configure:10829: result: yes, 2022-12-19 11:04:33 (Mon, 19 Dec 2022) - Linux i686
+configure:10838: checking whether to build with Java support
+configure:10841: result: yes
+configure:10936: checking the installed JDK
+configure:11018: result: checked (JDK 1.7.0_71)
+configure:11349: checking for jawt lib name
+configure:11519: result: -ljawt
+configure:11525: checking whether to enable gcj aot compilation
+configure:11590: result: no
+configure:11606: checking whether to enable EPM for packing
+configure:11609: result: yes
+configure:11673: checking whether the found EPM is the right EPM
+configure:11676: result: yes
+configure:11681: checking EPM version
+configure:11685: result: OK, >= 5.0
+configure:11696: checking which package format to use
+configure:11764: result: rpm deb
+configure:11767: checking for rpm
+configure:11786: result: /usr/bin/rpmbuild
+configure:11795: checking for dpkg
+configure:11813: found /usr/bin/dpkg
+configure:11826: result: /usr/bin/dpkg
+configure:11839: checking for fakeroot
+configure:11857: found /usr/bin/fakeroot
+configure:11870: result: /usr/bin/fakeroot
+configure:11962: checking for gperf
+configure:11980: found /usr/bin/gperf
+configure:11992: result: /usr/bin/gperf
+configure:12003: checking for gperf
+configure:12033: result: /usr/bin/gperf
+configure:12051: checking gperf version
+configure:12054: result: OK
+configure:12062: checking whether to build the stax
+configure:12070: result: yes
+configure:12075: checking whether to build the ODK
+configure:12078: result: yes
+configure:12081: checking for external/unowinreg/unowinreg.dll
+configure:12089: result: found
+configure:12445: checking whether to provide libstdc++/libgcc_s in the installset
+configure:12449: result: no
+configure:12462: checking which zlib to use
+configure:12520: result: internal
+configure:12527: checking which jpeg to use
+configure:12586: result: internal
+configure:12593: checking which expat to use
+configure:12657: result: internal
+configure:12665: checking whether freetype is available
+configure:12669: checking for FREETYPE
+configure:12676: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:12679: $? = 0
+configure:12693: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:12696: $? = 0
+configure:12754: result: yes
+configure:12768: checking for FT_GlyphSlot_Embolden in -lfreetype
+configure:12793: gcc -o conftest -g -O2  -I/usr/include/freetype2    -lfreetype   conftest.c -lfreetype  -lcrypt  >&5
+configure:12793: $? = 0
+configure:12802: result: yes
+configure:12837: checking which libxslt to use
+configure:12988: result: internal
+configure:12998: checking which libxml to use
+configure:13105: result: internal
+configure:13168: checking which python to use
+configure:13527: result: internal
+configure:13537: checking for bzip2
+configure:13555: found /usr/bin/bzip2
+configure:13567: result: /usr/bin/bzip2
+configure:13586: checking which lucene to use
+configure:13795: result: internal
+configure:13804: checking whether to build the MySQL Connector extension
+configure:13820: result: no
+configure:14050: checking which hsqldb to use
+configure:14113: result: internal
+configure:14122: checking which beanshell to use
+configure:14156: result: internal
+configure:14172: checking which saxon to use
+configure:14370: result: internal
+configure:14386: checking whether to enable support for JavaScript
+configure:14390: result: yes
+configure:14404: checking which libapr to use
+configure:14502: result: internal
+configure:14515: checking which libapr-util to use
+configure:14613: result: internal
+configure:14626: checking which libserf to use
+configure:14725: result: internal
+configure:14739: checking whether to enable support for CoinMP
+configure:14743: result: yes
+configure:14747: checking which coinmp to use
+configure:14936: result: internal
+configure:14955: checking which curl to use
+configure:15021: result: internal
+configure:15030: checking which mdds to use
+configure:15058: result: internal
+configure:15065: checking which boost to use
+configure:15140: result: internal
+configure:15147: checking which vigra to use
+configure:15175: result: internal
+configure:15182: checking which odbc headers to use
+configure:15199: result: internal
+configure:15206: checking whether to build XML Security support
+configure:15212: result: yes
+configure:15216: checking whether to build LDAP configuration backend
+configure:15354: checking whether to build the internal NSS module
+configure:15359: result: yes
+configure:15399: checking which sane header to use
+configure:15415: result: internal
+configure:15422: checking which icu to use
+configure:15646: result: internal
+configure:15661: checking whether to enable graphite support
+configure:15664: result: yes
+configure:15667: checking which graphite to use
+configure:15766: result: internal
+configure:15811: checking for X
+configure:15919: gcc -E  conftest.c
+configure:15919: $? = 0
+configure:15950: gcc -o conftest -g -O2   conftest.c -lX11 -lcrypt  >&5
+configure:15950: $? = 0
+configure:16000: result: libraries , headers 
+configure:16099: gcc -o conftest -g -O2   conftest.c -lcrypt   -lX11 >&5
+configure:16099: $? = 0
+configure:16197: checking for gethostbyname
+configure:16197: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16197: $? = 0
+configure:16197: result: yes
+configure:16294: checking for connect
+configure:16294: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16294: $? = 0
+configure:16294: result: yes
+configure:16343: checking for remove
+configure:16343: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16343: $? = 0
+configure:16343: result: yes
+configure:16392: checking for shmat
+configure:16392: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16392: $? = 0
+configure:16392: result: yes
+configure:16450: checking for IceConnectionNumber in -lICE
+configure:16475: gcc -o conftest -g -O2   conftest.c -lICE  -lcrypt  >&5
+configure:16475: $? = 0
+configure:16484: result: yes
+configure:16510: checking for XOpenDisplay in -lX11
+configure:16535: gcc -o conftest      conftest.c -lX11  -lcrypt  >&5
+configure:16535: $? = 0
+configure:16544: result: yes
+configure:16552: checking for XauDisposeAuth in -lXau
+configure:16577: gcc -o conftest      conftest.c -lXau  -lcrypt  >&5
+configure:16577: $? = 0
+configure:16586: result: yes
+configure:16620: checking fontconfig/fontconfig.h usability
+configure:16620: gcc -c    conftest.c >&5
+configure:16620: $? = 0
+configure:16620: result: yes
+configure:16620: checking fontconfig/fontconfig.h presence
+configure:16620: gcc -E   conftest.c
+configure:16620: $? = 0
+configure:16620: result: yes
+configure:16620: checking for fontconfig/fontconfig.h
+configure:16620: result: yes
+configure:16628: checking whether fontconfig is >= 2.2.0
+configure:16647: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:16647: $? = 0
+configure:16647: ./conftest
+configure:16647: $? = 0
+configure:16648: result: yes
+configure:16659: checking whether to link to Xrender
+configure:16667: result: no, dynamically open it
+configure:16671: checking which Xrender headers to use
+configure:16687: result: internal
+configure:16744: checking whether to enable RandR support
+configure:16755: checking for XRANDR
+configure:16762: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+configure:16765: $? = 0
+configure:16779: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+configure:16782: $? = 0
+configure:16820: result: yes
+configure:16897: checking which libnss to use
+configure:16995: result: internal
+configure:17004: checking which libssl to use
+configure:17108: result: internal
+configure:17117: checking which redland library to use
+configure:17216: result: internal
+configure:17225: checking whether to build the Spell Checking component
+configure:17230: checking which libhunspell to use
+configure:17381: result: internal
+configure:17396: checking whether to build the Hyphenator component
+configure:17401: checking which libhyphen to use
+configure:17555: result: internal
+configure:17582: checking which mythes to use
+configure:17765: result: internal
+configure:17775: checking which libtextcat to use
+configure:17837: result: internal
+configure:17844: checking which libtextcat data directory to use
+configure:17855: result: internal
+configure:17862: checking whether libc is >= 2.1.1
+configure:17865: checking for gnu_get_libc_version in -lc
+configure:17890: gcc -o conftest      conftest.c -lc  -lcrypt  >&5
+configure:17890: $? = 0
+configure:17899: result: yes
+configure:17907: result: yes
+configure:17917: checking for getopt
+configure:17917: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:17917: $? = 0
+configure:17917: result: yes
+configure:17930: checking for readdir_r
+configure:17930: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:17930: $? = 0
+configure:17930: result: yes
+configure:18307: checking for bison
+configure:18325: found /usr/bin/bison
+configure:18337: result: /usr/bin/bison
+configure:18348: checking the bison version
+configure:18359: result: checked (/usr/bin/bison 2.6.4)
+configure:18368: checking for flex
+configure:18386: found /usr/bin/flex
+configure:18398: result: /usr/bin/flex
+configure:18411: checking for patch
+configure:18429: found /usr/bin/patch
+configure:18441: result: /usr/bin/patch
+configure:18484: checking for gnucp
+configure:18517: result: no
+configure:18484: checking for cp
+configure:18502: found /usr/bin/cp
+configure:18514: result: /usr/bin/cp
+configure:18537: checking whether /usr/bin/cp is GNU cp from coreutils with preserve= support
+configure:18540: result: yes
+configure:18751: checking for zip
+configure:18769: found /usr/bin/zip
+configure:18781: result: /usr/bin/zip
+configure:18791: checking for unzip
+configure:18809: found /usr/bin/unzip
+configure:18821: result: /usr/bin/unzip
+configure:18924: checking which VCLplugs shall be built
+configure:18951: result: gtk
+configure:18957: checking whether to enable GConf support
+configure:18961: result: yes
+configure:18965: checking for GCONF
+configure:18972: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:18975: $? = 0
+configure:18989: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:18992: $? = 0
+configure:19050: result: yes
+configure:19062: checking whether to enable GNOME VFS support
+configure:19253: result: no
+configure:19268: checking for GTK
+configure:19275: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:19278: $? = 0
+configure:19292: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:19295: $? = 0
+configure:19333: result: yes
+configure:19339: checking for GTHREAD
+configure:19346: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:19349: $? = 0
+configure:19363: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:19366: $? = 0
+configure:19404: result: yes
+configure:19413: checking for GTK_2_10
+configure:19420: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:19423: $? = 0
+configure:19437: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:19440: $? = 0
+configure:19478: result: yes
+configure:19485: checking whether to enable DBUS support
+configure:19489: result: yes
+configure:19493: checking for DBUS
+configure:19500: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:19503: $? = 0
+configure:19517: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:19520: $? = 0
+configure:19578: result: yes
+configure:19587: checking whether to enable GIO support
+configure:19594: result: yes
+configure:19598: checking for GIO
+configure:19605: $PKG_CONFIG --exists --print-errors "gio-2.0 "
+configure:19608: $? = 0
+configure:19622: $PKG_CONFIG --exists --print-errors "gio-2.0 "
+configure:19625: $? = 0
+configure:19683: result: yes
+configure:19709: checking whether to build the GStreamer media backend
+configure:19714: checking for GSTREAMER
+configure:19721: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-1.0 gstreamer-video-1.0"
+configure:19724: $? = 0
+configure:19738: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-1.0 gstreamer-video-1.0"
+configure:19741: $? = 0
+configure:19779: result: yes
+configure:19784: result: yes
+configure:19820: checking whether to use cairo
+configure:19971: result: no
+configure:19989: checking whether to build the OpenGL Transitions component
+configure:19994: result: yes
+configure:19996: checking GL/gl.h usability
+configure:19996: gcc -c    conftest.c >&5
+configure:19996: $? = 0
+configure:19996: result: yes
+configure:19996: checking GL/gl.h presence
+configure:19996: gcc -E   conftest.c
+configure:19996: $? = 0
+configure:19996: result: yes
+configure:19996: checking for GL/gl.h
+configure:19996: result: yes
+configure:20004: checking for main in -lGL
+configure:20023: gcc -o conftest      conftest.c -lGL  -lcrypt  >&5
+configure:20023: $? = 0
+configure:20032: result: yes
+configure:20045: checking for main in -lGLU
+configure:20064: gcc -o conftest      conftest.c -lGLU  -lGL -lcrypt  >&5
+configure:20064: $? = 0
+configure:20073: result: yes
+configure:20095: checking whether to build the PDF Import extension
+configure:20207: result: no
+configure:20216: checking whether to build the Wiki Publisher extension
+configure:20219: result: yes
+configure:20221: checking for swext module
+configure:20224: result: OK
+configure:20239: checking which Servlet API Jar to use
+configure:20272: result: internal
+configure:20281: checking whether to build the Report Builder extension
+configure:21049: result: no
+configure:21070: checking which Apache commons-* libs to use
+configure:21385: result: internal
+configure:21747: checking whether to enable the lockdown pieces
+configure:21755: result: no
+configure:21760: checking whether to enable evolution 2 support
+configure:21859: result: no
+configure:21866: checking whether to include MathMLDTD
+configure:21874: result: yes
+configure:21885: checking whether to include category B fonts
+configure:21888: result: yes
+configure:21900: checking whether to include category A fonts
+configure:21903: result: yes
+configure:21915: checking whether any fonts are included
+configure:21920: result: yes
+configure:21931: checking whether to include PPDs
+configure:21934: result: yes
+configure:21944: checking whether to include AFMs
+configure:21947: result: yes
+configure:21960: checking whether and how to use Xinerama
+configure:21996: result: yes, with dynamic linking
+configure:21998: checking X11/extensions/Xinerama.h usability
+configure:21998: gcc -c    conftest.c >&5
+configure:21998: $? = 0
+configure:21998: result: yes
+configure:21998: checking X11/extensions/Xinerama.h presence
+configure:21998: gcc -E   conftest.c
+configure:21998: $? = 0
+configure:21998: result: yes
+configure:21998: checking for X11/extensions/Xinerama.h
+configure:21998: result: yes
+configure:22013: checking for XineramaIsActive in -lXinerama
+configure:22038: gcc -o conftest      conftest.c -lXinerama -L/usr/lib -lXext -ldl -lGLU -lGL -lcrypt  >&5
+configure:22038: $? = 0
+configure:22047: result: yes
+configure:22099: checking whether to build own version of libpng
+configure:22115: result: no
+configure:22122: checking whether to build own version of libjpeg
+configure:22142: result: no
+configure:22151: checking whether to trigger rat scan
+configure:22154: result: no
+configure:22335: checking for apache-ant
+configure:22369: result: no
+configure:22335: checking for ant
+configure:22354: found /usr/local/share/java/apache-ant/bin/ant
+configure:22366: result: /usr/local/share/java/apache-ant/bin/ant
+configure:22401: checking if /usr/local/share/java/apache-ant/bin/ant works
+configure:22426: /usr/local/share/java/apache-ant/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: /home/jim/src/asf/aoo-git/main/conftest.xml
+
+conftest:
+    [javac] /home/jim/src/asf/aoo-git/main/conftest.xml:3: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
+    [javac] Compiling 1 source file
+
+BUILD SUCCESSFUL
+Total time: 0 seconds
+configure:22429: $? = 0
+configure:22432: result: Ant works
+configure:22460: checking Ant lib directory
+configure:22487: result: Ant lib directory found.
+configure:22500: checking whether ant is >= 1.9.1
+configure: ant_version 1.9.15 
+configure: ant_version_major 1 
+configure: ant_version_minor 9 
+configure:22512: result: yes, 1.9.15
+configure:22519: checking whether ant supports mapper type="regexp"
+configure:22552: /usr/local/share/java/apache-ant/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: /home/jim/src/asf/aoo-git/main/conftest.xml
+
+copytest:
+
+conftest:
+    [javac] /home/jim/src/asf/aoo-git/main/conftest.xml:3: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
+    [javac] Compiling 1 source file
+
+BUILD SUCCESSFUL
+Total time: 0 seconds
+configure:22555: $? = 0
+configure:22558: result: yes
+configure:22655: checking for hamcrest-core
+configure:22711: result: no, skipping
+configure:22722: checking which languages to be built
+configure:22729: result: ast bg ca ca-XR ca-XV cs da de el en-GB en-US es et eu fi fr gd gl he hi hu hy it ja kab km ko lt nb nl om pl pt pt-BR ru sk sl sr sv ta th tr uk vi zh-CN zh-TW
+configure:22736: checking which languages have poor help localizations
+configure:22740: result: none
+configure:22748: checking which dictionaries to include
+configure:22752: result: ALL
+configure:22761: checking for additional 'intro' bitmaps
+configure:22766: result: none
+configure:22784: checking for additional 'about' bitmaps
+configure:22789: result: none
+configure:22808: checking for vendor
+configure:22811: result: not set
+configure:22821: checking for UNIX wrapper name
+configure:22824: result: not set
+configure:22833: checking whether to statically link to Gtk
+configure:22841: result: no
+configure:22846: checking whether to use layout dialogs
+configure:22854: result: no
+configure:22862: checking build verbosity
+configure:22876: result: not set
+configure:22881: checking whether to enable dependency tracking
+configure:22888: result: yes
+configure:22905: checking solver path
+configure:22909: result: default
+configure:22928: writing config.status
+configure:23081: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by config.status, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  CONFIG_FILES    = 
+  CONFIG_HEADERS  = 
+  CONFIG_LINKS    = 
+  CONFIG_COMMANDS = 
+  $ ./config.status 
+
+on aoo-builder32-fedora19.localdomain
+
+config.status:1133: creating set_soenv
+config.status:1133: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=i686-pc-linux-gnu
+ac_cv_c_bigendian=no
+ac_cv_c_compiler_gnu=yes
+ac_cv_cxx_compiler_gnu=yes
+ac_cv_env_APR_CFLAGS_set=
+ac_cv_env_APR_CFLAGS_value=
+ac_cv_env_APR_LIBS_set=
+ac_cv_env_APR_LIBS_value=
+ac_cv_env_APR_UTIL_CFLAGS_set=
+ac_cv_env_APR_UTIL_CFLAGS_value=
+ac_cv_env_APR_UTIL_LIBS_set=
+ac_cv_env_APR_UTIL_LIBS_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_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_COINMP_CFLAGS_set=
+ac_cv_env_COINMP_CFLAGS_value=
+ac_cv_env_COINMP_LIBS_set=
+ac_cv_env_COINMP_LIBS_value=
+ac_cv_env_CPPFLAGS_set=
+ac_cv_env_CPPFLAGS_value=
+ac_cv_env_CPP_set=
+ac_cv_env_CPP_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_DBUS_CFLAGS_set=
+ac_cv_env_DBUS_CFLAGS_value=
+ac_cv_env_DBUS_LIBS_set=
+ac_cv_env_DBUS_LIBS_value=
+ac_cv_env_FREETYPE_CFLAGS_set=
+ac_cv_env_FREETYPE_CFLAGS_value=
+ac_cv_env_FREETYPE_LIBS_set=
+ac_cv_env_FREETYPE_LIBS_value=
+ac_cv_env_GCONF_CFLAGS_set=
+ac_cv_env_GCONF_CFLAGS_value=
+ac_cv_env_GCONF_LIBS_set=
+ac_cv_env_GCONF_LIBS_value=
+ac_cv_env_GIO_CFLAGS_set=
+ac_cv_env_GIO_CFLAGS_value=
+ac_cv_env_GIO_LIBS_set=
+ac_cv_env_GIO_LIBS_value=
+ac_cv_env_GNOMEVFS_CFLAGS_set=
+ac_cv_env_GNOMEVFS_CFLAGS_value=
+ac_cv_env_GNOMEVFS_LIBS_set=
+ac_cv_env_GNOMEVFS_LIBS_value=
+ac_cv_env_GOBJECT_CFLAGS_set=
+ac_cv_env_GOBJECT_CFLAGS_value=
+ac_cv_env_GOBJECT_LIBS_set=
+ac_cv_env_GOBJECT_LIBS_value=
+ac_cv_env_GRAPHITE_CFLAGS_set=
+ac_cv_env_GRAPHITE_CFLAGS_value=
+ac_cv_env_GRAPHITE_LIBS_set=
+ac_cv_env_GRAPHITE_LIBS_value=
+ac_cv_env_GSTREAMER_CFLAGS_set=
+ac_cv_env_GSTREAMER_CFLAGS_value=
+ac_cv_env_GSTREAMER_LIBS_set=
+ac_cv_env_GSTREAMER_LIBS_value=
+ac_cv_env_GTHREAD_CFLAGS_set=
+ac_cv_env_GTHREAD_CFLAGS_value=
+ac_cv_env_GTHREAD_LIBS_set=
+ac_cv_env_GTHREAD_LIBS_value=
+ac_cv_env_GTK_2_10_CFLAGS_set=
+ac_cv_env_GTK_2_10_CFLAGS_value=
+ac_cv_env_GTK_2_10_LIBS_set=
+ac_cv_env_GTK_2_10_LIBS_value=
+ac_cv_env_GTK_CFLAGS_set=
+ac_cv_env_GTK_CFLAGS_value=
+ac_cv_env_GTK_LIBS_set=
+ac_cv_env_GTK_LIBS_value=
+ac_cv_env_HUNSPELL_CFLAGS_set=
+ac_cv_env_HUNSPELL_CFLAGS_value=
+ac_cv_env_HUNSPELL_LIBS_set=
+ac_cv_env_HUNSPELL_LIBS_value=
+ac_cv_env_LDFLAGS_set=
+ac_cv_env_LDFLAGS_value=
+ac_cv_env_LIBS_set=
+ac_cv_env_LIBS_value=
+ac_cv_env_LIBXML_CFLAGS_set=
+ac_cv_env_LIBXML_CFLAGS_value=
+ac_cv_env_LIBXML_LIBS_set=
+ac_cv_env_LIBXML_LIBS_value=
+ac_cv_env_LIBXSLT_CFLAGS_set=
+ac_cv_env_LIBXSLT_CFLAGS_value=
+ac_cv_env_LIBXSLT_LIBS_set=
+ac_cv_env_LIBXSLT_LIBS_value=
+ac_cv_env_MYTHES_CFLAGS_set=
+ac_cv_env_MYTHES_CFLAGS_value=
+ac_cv_env_MYTHES_LIBS_set=
+ac_cv_env_MYTHES_LIBS_value=
+ac_cv_env_NSS_CFLAGS_set=
+ac_cv_env_NSS_CFLAGS_value=
+ac_cv_env_NSS_LIBS_set=
+ac_cv_env_NSS_LIBS_value=
+ac_cv_env_OPENSSL_CFLAGS_set=
+ac_cv_env_OPENSSL_CFLAGS_value=
+ac_cv_env_OPENSSL_LIBS_set=
+ac_cv_env_OPENSSL_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_POPPLER_CFLAGS_set=
+ac_cv_env_POPPLER_CFLAGS_value=
+ac_cv_env_POPPLER_LIBS_set=
+ac_cv_env_POPPLER_LIBS_value=
+ac_cv_env_PYTHON_CFLAGS_set=
+ac_cv_env_PYTHON_CFLAGS_value=
+ac_cv_env_PYTHON_LIBS_set=
+ac_cv_env_PYTHON_LIBS_value=
+ac_cv_env_REDLAND_CFLAGS_set=
+ac_cv_env_REDLAND_CFLAGS_value=
+ac_cv_env_REDLAND_LIBS_set=
+ac_cv_env_REDLAND_LIBS_value=
+ac_cv_env_SERF_CFLAGS_set=
+ac_cv_env_SERF_CFLAGS_value=
+ac_cv_env_SERF_LIBS_set=
+ac_cv_env_SERF_LIBS_value=
+ac_cv_env_XMKMF_set=
+ac_cv_env_XMKMF_value=
+ac_cv_env_XRANDR_CFLAGS_set=
+ac_cv_env_XRANDR_CFLAGS_value=
+ac_cv_env_XRANDR_LIBS_set=
+ac_cv_env_XRANDR_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_connect=yes
+ac_cv_func_gethostbyname=yes
+ac_cv_func_getopt=yes
+ac_cv_func_readdir_r=yes
+ac_cv_func_remove=yes
+ac_cv_func_shmat=yes
+ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
+ac_cv_header_GL_gl_h=yes
+ac_cv_header_X11_extensions_Xinerama_h=yes
+ac_cv_header_cups_cups_h=yes
+ac_cv_header_fontconfig_fontconfig_h=yes
+ac_cv_header_inttypes_h=yes
+ac_cv_header_memory_h=yes
+ac_cv_header_security_pam_appl_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_stat_h=yes
+ac_cv_header_sys_types_h=yes
+ac_cv_header_unistd_h=yes
+ac_cv_host=i686-pc-linux-gnu
+ac_cv_lib_GLU_main=yes
+ac_cv_lib_GL_main=yes
+ac_cv_lib_ICE_IceConnectionNumber=yes
+ac_cv_lib_X11_XOpenDisplay=yes
+ac_cv_lib_Xau_XauDisposeAuth=yes
+ac_cv_lib_Xinerama_XineramaIsActive=yes
+ac_cv_lib_c_gnu_get_libc_version=yes
+ac_cv_lib_crypt_crypt=yes
+ac_cv_lib_freetype_FT_GlyphSlot_Embolden=yes
+ac_cv_objext=o
+ac_cv_path_ANT=/usr/local/share/java/apache-ant/bin/ant
+ac_cv_path_AWK=/usr/bin/gawk
+ac_cv_path_BISON=/usr/bin/bison
+ac_cv_path_BZIP2=/usr/bin/bzip2
+ac_cv_path_COMPATH=/usr/lib/ccache/gcc
+ac_cv_path_DPKG=/usr/bin/dpkg
+ac_cv_path_EGREP='/usr/bin/grep -E'
+ac_cv_path_FAKEROOT=/usr/bin/fakeroot
+ac_cv_path_FLEX=/usr/bin/flex
+ac_cv_path_GNUCP=/usr/bin/cp
+ac_cv_path_GPERF=/usr/bin/gperf
+ac_cv_path_GREP=/usr/bin/grep
+ac_cv_path_PATCH=/usr/bin/patch
+ac_cv_path_PERL=/usr/bin/perl
+ac_cv_path_SED=/usr/bin/sed
+ac_cv_path_SHELLPATH=/usr/bin/bash
+ac_cv_path_UNZIP=/usr/bin/unzip
+ac_cv_path_ZIP=/usr/bin/zip
+ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
+ac_cv_prog_AWK=gawk
+ac_cv_prog_CPP='gcc -E'
+ac_cv_prog_CXXCPP='g++ -E'
+ac_cv_prog_ac_ct_CC=gcc
+ac_cv_prog_ac_ct_CXX=g++
+ac_cv_prog_cc_c89=
+ac_cv_prog_cc_g=yes
+ac_cv_prog_cxx_g=yes
+ac_cv_sizeof_long=4
+ac_cv_sys_file_offset_bits=64
+ac_cv_sys_largefile_CC=no
+ac_cv_target=i686-pc-linux-gnu
+pkg_cv_DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_DBUS_LIBS='-L/lib -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0  '
+pkg_cv_FREETYPE_CFLAGS='-I/usr/include/freetype2  '
+pkg_cv_FREETYPE_LIBS='-lfreetype  '
+pkg_cv_GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_GCONF_LIBS='-lgconf-2 -lglib-2.0  '
+pkg_cv_GIO_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_GIO_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
+pkg_cv_GSTREAMER_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz -I/usr/include/gstreamer-1.0  '
+pkg_cv_GSTREAMER_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgstvideo-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0  '
+pkg_cv_GTHREAD_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_GTHREAD_LIBS='-pthread -lgthread-2.0 -lglib-2.0  '
+pkg_cv_GTK_2_10_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz  '
+pkg_cv_GTK_2_10_LIBS='-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lglib-2.0  '
+pkg_cv_GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz  '
+pkg_cv_GTK_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgdk_pixbuf_xlib-2.0 -lgmodule-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0  '
+pkg_cv_XRANDR_CFLAGS=' '
+pkg_cv_XRANDR_LIBS='-lXrandr  '
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+ABOUT_BITMAPS=''
+ADDITIONAL_REPOSITORIES='../ext_libraries ../extras'
+ALLOC=''
+ANT='/usr/local/share/java/apache-ant/bin/ant'
+ANT_HOME='/usr/local/share/java/apache-ant'
+ANT_LIB='/usr/local/share/java/apache-ant/lib'
+APR_CFLAGS=''
+APR_LIBS=''
+APR_UTIL_CFLAGS=''
+APR_UTIL_LIBS=''
+ARM_TARGET=''
+ASM_HOME='NO_ASM_HOME'
+ATL_INCLUDE=''
+ATL_LIB=''
+ATL_LIB_X64=''
+AWK='/usr/bin/gawk'
+AWTLIB='-ljawt'
+BISON='/usr/bin/bison'
+BSH_JAR=''
+BUILD_EPM='NO'
+BUILD_PIXMAN=''
+BUILD_STAX='YES'
+BUILD_TYPE='OOo CRASHREP GTEST ODK ZLIB JPEG EXPAT LIBXSLT LIBXML2 LIBXMLSEC PYTHON LUCENE HSQLDB BSH SAXON RHINO APR APR_UTIL SERF COINMP COINMP CURL MDDS BOOST VIGRA UNIXODBC NSS SANE ICU GRAPHITE X11_EXTENSIONS NSS OPENSSL REDLAND HUNSPELL HYPHEN MYTHES LIBTEXTCAT LIBTEXTCATDATA GTK SYSTRAY_GTK SWEXT TOMCAT APACHE_COMMONS TOMCAT MATHMLDTD CATB_FONTS MORE_FONTS AFMS L10N'
+BUILD_UNOWINREG='NO'
+BUILD_VER_STRING='2022-12-19 11:04:33 (Mon, 19 Dec 2022) - Linux i686'
+BUILD_WIN64=''
+BUILD_X64=''
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2='/usr/bin/bzip2'
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='gcc'
+CCACHE=''
+CCNUMVER='000400080003'
+CCVER='4.8.3'
+CC_PATH='/usr/lib/ccache/'
+CFLAGS=''
+COINMP_CFLAGS=''
+COINMP_LIBS=''
+COM='GCC'
+COMEX=''
+COMID='gcc3'
+COMMONS_CODEC_JAR=''
+COMMONS_HTTPCLIENT_JAR=''
+COMMONS_LANG_JAR=''
+COMMONS_LOGGING_JAR=''
+COMNAME='gcc3'
+COMPATH='/usr/lib/ccache'
+CPP='gcc -E'
+CPPFLAGS=' '
+CRYPT_LINK='YES'
+CSC_PATH=''
+CURLCONFIG=''
+CURL_CFLAGS=''
+CURL_LIBS=''
+CUSTOM_PACK_LIST=''
+CXX='g++'
+CXXCPP='g++ -E'
+CXXFLAGS='-g -O2'
+CYGWIN_PATH='NO_CYGWIN'
+DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+DBUS_LIBS='-L/lib -ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0  '
+DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSIZEOF_LONG=4 -D_FILE_OFFSET_BITS=64 -DHAVE_LIBCRYPT=1 -DHAVE_GETOPT=1 -DHAVE_READDIR_R=1 -DHAVE_LIBGL=1 -DHAVE_LIBGLU=1 -DHAVE_LIBXINERAMA=1'
+DICT_SYSTEM_DIR=''
+DIRECTXSDK_HOME=''
+DIRECTXSDK_LIB=''
+DISABLE_ACTIVEX=''
+DISABLE_ATL=''
+DISABLE_SAXON=''
+DISABLE_STRIP=''
+DMAKE='/usr/local/bin/dmake'
+DMAKE_PATH='/usr/local/bin/dmake'
+DMAKE_URL=''
+DO_FETCH_TARBALLS='yes'
+DPKG='/usr/bin/dpkg'
+ECHO_C=''
+ECHO_N='-n'
+ECHO_T=''
+EGREP='/usr/bin/grep -E'
+ENABLE_BEANSHELL='YES'
+ENABLE_BUNDLED_DICTIONARIES='YES'
+ENABLE_CAIRO=''
+ENABLE_CAIRO_CANVAS='FALSE'
+ENABLE_CATEGORY_B='YES'
+ENABLE_COINMP='YES'
+ENABLE_CRASHDUMP='TRUE'
+ENABLE_CUPS='TRUE'
+ENABLE_DBUS='TRUE'
+ENABLE_DEBUG='FALSE'
+ENABLE_DIRECTX=''
+ENABLE_DIRECT_DRAW=''
+ENABLE_EVOAB2=''
+ENABLE_FONTCONFIG='TRUE'
+ENABLE_GCONF='TRUE'
+ENABLE_GIO='TRUE'
+ENABLE_GNOMEVFS=''
+ENABLE_GRAPHITE='TRUE'
+ENABLE_GSTREAMER='TRUE'
+ENABLE_GTK='TRUE'
+ENABLE_HUNSPELL='YES'
+ENABLE_HYPHEN='YES'
+ENABLE_JAVASCRIPT='YES'
+ENABLE_KDE4=''
+ENABLE_KDE=''
+ENABLE_LAYOUT='FALSE'
+ENABLE_LOCKDOWN=''
+ENABLE_MEDIAWIKI='YES'
+ENABLE_MYSQLC='NO'
+ENABLE_NSS_MODULE='YES'
+ENABLE_ONLINE_UPDATE='YES'
+ENABLE_OPENGL='TRUE'
+ENABLE_PCH=''
+ENABLE_PDFIMPORT='NO'
+ENABLE_RANDR='TRUE'
+ENABLE_REPORTBUILDER='NO'
+ENABLE_RPATH='yes'
+ENABLE_STATIC_GTK='FALSE'
+ENABLE_SYMBOLS=''
+ENABLE_SYSTRAY_GTK='TRUE'
+ENABLE_UNIT_TESTS='YES'
+ENABLE_WERROR='FALSE'
+EPM='/usr/local/bin/epm'
+EPM_URL=''
+EXCEPTIONS=''
+EXEEXT=''
+FAKEROOT='/usr/bin/fakeroot'
+FBSD_GCC_RPATH=''
+FLEX='/usr/bin/flex'
+FLUTE_JAR=''
+FRAME_HOME=''
+FREETYPE_CFLAGS='-I/usr/include/freetype2  '
+FREETYPE_LIBS='-lfreetype  '
+GCCVER='40803'
+GCC_HOME='/usr/lib/ccache/gcc'
+GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GCONF_LIBS='-lgconf-2 -lglib-2.0  '
+GIO_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GIO_LIBS='-lgio-2.0 -lgobject-2.0 -lglib-2.0  '
+GNOMEVFS_CFLAGS=''
+GNOMEVFS_LIBS=''
+GNUCP='/usr/bin/cp'
+GNUMAKE='make'
+GNUPATCH=''
+GNUTAR='gtar'
+GOBJECT_CFLAGS=''
+GOBJECT_LIBS=''
+GPERF='/usr/bin/gperf'
+GRAPHITE_CFLAGS=''
+GRAPHITE_LIBS=''
+GREP='/usr/bin/grep'
+GSTREAMER_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz -I/usr/include/gstreamer-1.0  '
+GSTREAMER_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgstvideo-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lglib-2.0  '
+GTHREAD_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GTHREAD_LIBS='-pthread -lgthread-2.0 -lglib-2.0  '
+GTK_2_10_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz  '
+GTK_2_10_LIBS='-lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lglib-2.0  '
+GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/libdrm -I/usr/include/harfbuzz  '
+GTK_LIBS='-pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgdk_pixbuf_xlib-2.0 -lgmodule-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0  '
+HAMCREST_CORE_JAR=''
+HAVE_ATLTHUNK=''
+HAVE_GCC_VISIBILITY_FEATURE='TRUE'
+HAVE_GETOPT='YES'
+HAVE_LD_BSYMBOLIC_FUNCTIONS='TRUE'
+HAVE_LD_HASH_STYLE='TRUE'
+HAVE_READDIR_R='YES'
+HOME='/home/jim'
+HSQLDB_JAR=''
+HUNSPELL_CFLAGS=''
+HUNSPELL_LIBS=''
+HYPHEN_LIB=''
+HYPH_SYSTEM_DIR=''
+ICUCONFIG=''
+ICU_MAJOR=''
+ICU_MICRO=''
+ICU_MINOR=''
+INTRO_BITMAPS=''
+IS_SYSTEM_DMAKE=''
+JAVAAOTCOMPILER=''
+JAVACISGCJ=''
+JAVACOMPILER='/usr/lib/jvm/java-1.7.0-openjdk/bin/javac'
+JAVADOC='/usr/lib/jvm/java-1.7.0-openjdk/bin/javadoc'
+JAVAFLAGS=''
+JAVAIFLAGS=''
+JAVAINTERPRETER='/usr/lib/jvm/java-1.7.0-openjdk/bin/java'
+JAVA_HOME='/usr/lib/jvm/java-1.7.0-openjdk'
+JDK='sun'
+JFREEREPORT_JAR=''
+KDE4_CFLAGS=''
+KDE4_LIBS=''
+KDE_CFLAGS=''
+KDE_LIBS=''
+LDFLAGS=' '
+LFS_CFLAGS='-D_FILE_OFFSET_BITS=64'
+LIBBASE_JAR=''
+LIBFONTS_JAR=''
+LIBFORMULA_JAR=''
+LIBINTL_PREFIX=''
+LIBLAYOUT_JAR=''
+LIBLOADER_JAR=''
+LIBMYSQL_PATH=''
+LIBOBJS=''
+LIBREPOSITORY_JAR=''
+LIBS='-lXinerama -lGLU -lGL -lcrypt '
+LIBSERIALIZER_JAR=''
+LIBXML_CFLAGS=''
+LIBXML_JAR=''
+LIBXML_LIBS=''
+LIBXSLT_CFLAGS=''
+LIBXSLT_LIBS=''
+LOCAL_SOLENV='DEFAULT'
+LOCAL_SOLVER='DEFAULT'
+LTLIBOBJS=''
+LUCENE_ANALYZERS_JAR=''
+LUCENE_CORE_JAR=''
+MACOSX_DEPLOYMENT_TARGET=''
+MACOSX_SDK_PATH=''
+MFC_INCLUDE=''
+MFC_LIB=''
+MIDL_PATH=''
+MINGWCXX=''
+MINGWSTRIP=''
+MINGW_BACKWARD_INCLUDE_PATH=''
+MINGW_CLIB_DIR=''
+MINGW_GCCDLL=''
+MINGW_GCCLIB_EH=''
+MINGW_GXXDLL=''
+MINGW_LIB_INCLUDE_PATH=''
+MINGW_SHARED_GCCLIB=''
+MINGW_SHARED_GXXLIB=''
+MINGW_SHARED_LIBSTDCPP=''
+ML_EXE=''
+MOC4='moc'
+MOC='moc'
+MOCQT4=''
+MOZILLABUILD=''
+MOZ_INC=''
+MSPDB_PATH=''
+MYSQLCONFIG=''
+MYSQL_DEFINES=''
+MYSQL_INC=''
+MYSQL_LIB=''
+MYTHES_CFLAGS=''
+MYTHES_LIBS=''
+NASM_EXE=''
+NASM_HOME='NO_NASM_HOME'
+NEW_SHADOW_API=''
+NSIS_PATH=''
+NSS_CFLAGS=''
+NSS_LIBS=''
+OBJEXT='o'
+OOO_JUNIT_JAR=''
+OOO_VENDOR=''
+OPENSSL_CFLAGS=''
+OPENSSL_LIBS=''
+OSVERSION=''
+PACKAGE_BUGREPORT=''
+PACKAGE_NAME=''
+PACKAGE_STRING=''
+PACKAGE_TARNAME=''
+PACKAGE_URL=''
+PACKAGE_VERSION=''
+PAM='YES'
+PAM_LINK='NO'
+PATCH='/usr/bin/patch'
+PATH_SEPARATOR=':'
+PERL='/usr/bin/perl'
+PKGFORMAT='rpm deb'
+PKGMK=''
+PKG_CONFIG='/usr/bin/pkg-config'
+PKG_CONFIG_LIBDIR=''
+PKG_CONFIG_PATH=''
+POPPLER_CFLAGS=''
+POPPLER_LIBS=''
+PRODUCT='full'
+PROEXT='.pro'
+PROFULLSWITCH='product=full'
+PSDK_HOME=''
+PTHREAD_CFLAGS=''
+PTHREAD_LIBS=''
+PYTHON=''
+PYTHON_CFLAGS=''
+PYTHON_EXEC_PREFIX=''
+PYTHON_LIBS=''
+PYTHON_PLATFORM=''
+PYTHON_PREFIX=''
+PYTHON_VERSION=''
+RAT_JAR_HOME=''
+REDLAND_CFLAGS=''
+REDLAND_LIBS=''
+RPM='rpmbuild'
+SAC_JAR=''
+SAXON_JAR=''
+SCPDEFS=' -DENABLE_ONLINE_UPDATE -DWITH_CATB_FONTS -DWITH_CATA_FONTS'
+SDKROOT=''
+SED='/usr/bin/sed'
+SERF_CFLAGS=''
+SERF_LIBS=''
+SERIALIZER_JAR=''
+SERVLETAPI_JAR=''
+SHELL='/bin/sh'
+SHELLPATH='/usr/bin'
+SIZEOF_LONG='4'
+SOLAR_JAVA='TRUE'
+SOURCEVERSION='AOO420'
+SYSTEM_APACHE_COMMONS='NO'
+SYSTEM_APR='NO'
+SYSTEM_APR_UTIL='NO'
+SYSTEM_BOOST='NO'
+SYSTEM_BSH='NO'
+SYSTEM_CAIRO=''
+SYSTEM_COINMP='NO'
+SYSTEM_CURL='NO'
+SYSTEM_DICTS='NO'
+SYSTEM_EXPAT='NO'
+SYSTEM_GDKPIXBUF='YES'
+SYSTEM_GENBRK=''
+SYSTEM_GENCCODE=''
+SYSTEM_GENCMN=''
+SYSTEM_GETTEXT='YES'
+SYSTEM_GLIB='YES'
+SYSTEM_GRAPHITE='NO'
+SYSTEM_HSQLDB='NO'
+SYSTEM_HUNSPELL='NO'
+SYSTEM_HYPH='NO'
+SYSTEM_ICU='NO'
+SYSTEM_JFREEREPORT=''
+SYSTEM_JPEG='NO'
+SYSTEM_LIBC='YES'
+SYSTEM_LIBJPEG='YES'
+SYSTEM_LIBPNG='YES'
+SYSTEM_LIBTEXTCAT='NO'
+SYSTEM_LIBTEXTCAT_DATA=''
+SYSTEM_LIBXML='NO'
+SYSTEM_LIBXSLT='NO'
+SYSTEM_LUCENE='NO'
+SYSTEM_MDDS='NO'
+SYSTEM_MYSQL=''
+SYSTEM_MYSQL_CPPCONN=''
+SYSTEM_MYTHES='NO'
+SYSTEM_NSS='NO'
+SYSTEM_ODBC_HEADERS='NO'
+SYSTEM_OPENSSL='NO'
+SYSTEM_PANGO='YES'
+SYSTEM_POPPLER=''
+SYSTEM_PYTHON='NO'
+SYSTEM_REDLAND='NO'
+SYSTEM_SANE_HEADER='NO'
+SYSTEM_SAXON='NO'
+SYSTEM_SERF='NO'
+SYSTEM_SERVLETAPI='NO'
+SYSTEM_STDLIBS='YES'
+SYSTEM_VIGRA='NO'
+SYSTEM_XRENDER_HEADERS='NO'
+SYSTEM_ZLIB='NO'
+TARFILE_LOCATION='DEFAULT'
+THES_SYSTEM_DIR=''
+UNIXWRAPPERNAME=''
+UNZIP='/usr/bin/unzip'
+UPD='420'
+USE_CCACHE=''
+USE_FT_EMBOLDEN='YES'
+USE_MINGW=''
+USE_PACKAGER=''
+USE_SYSTEM_STL='YES'
+USE_XINERAMA='YES'
+VALGRIND_CFLAGS=''
+VC_STANDARD=''
+VERBOSE=''
+WINDOWS_VISTA_PSDK=''
+WITHOUT_AFMS=''
+WITHOUT_PPDS=''
+WITH_CATA_FONTS='YES'
+WITH_CATB_FONTS='YES'
+WITH_DICT=',ALL,'
+WITH_FONTS='YES'
+WITH_LANG='ast bg ca ca-XR ca-XV cs da de el en-GB en-US es et eu fi fr gd gl he hi hu hy it ja kab km ko lt nb nl om pl pt pt-BR ru sk sl sr sv ta th tr uk vi zh-CN zh-TW'
+WITH_LDAP='NO'
+WITH_MINGWIN='0'
+WITH_OPENLDAP=''
+WITH_POOR_HELP_LOCALIZATIONS=''
+WITH_VC_REDIST=''
+WORDS_BIGENDIAN='no'
+XAU_LIBS='-lXau'
+XINC='/usr/include'
+XINERAMA_LINK='dynamic'
+XLIB='/usr/lib'
+XMKMF=''
+XRANDR_CFLAGS=' '
+XRANDR_DLOPEN='FALSE'
+XRANDR_LIBS='-lXrandr  '
+XRENDER_LINK='NO'
+XSLTPROC=''
+X_CFLAGS=''
+X_EXTRA_LIBS=''
+X_LIBS=''
+X_PRE_LIBS=' -lSM -lICE'
+ZIP='/usr/bin/zip'
+ZIP_HOME='/usr/bin'
+_cc=''
+_solenv='./solenv'
+ac_ct_CC='gcc'
+ac_ct_CXX='g++'
+bindir='${exec_prefix}/bin'
+build='i686-pc-linux-gnu'
+build_alias=''
+build_cpu='i686'
+build_os='linux-gnu'
+build_vendor='pc'
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host='i686-pc-linux-gnu'
+host_alias=''
+host_cpu='i686'
+host_os='linux-gnu'
+host_vendor='pc'
+htmldir='${docdir}'
+includedir='${prefix}/include'
+infodir='${datarootdir}/info'
+libdir='${exec_prefix}/lib'
+libexecdir='${exec_prefix}/libexec'
+localedir='${datarootdir}/locale'
+localstatedir='${prefix}/var'
+mandir='${datarootdir}/man'
+nodep=''
+oldincludedir='/usr/include'
+pdfdir='${docdir}'
+pkgpyexecdir=''
+pkgpythondir=''
+prefix='/usr/local'
+program_transform_name='s,x,x,'
+psdir='${docdir}'
+pyexecdir=''
+pythondir=''
+sbindir='${exec_prefix}/sbin'
+sharedstatedir='${prefix}/com'
+sysconfdir='${prefix}/etc'
+target='i686-pc-linux-gnu'
+target_alias=''
+target_cpu='i686'
+target_os='linux-gnu'
+target_vendor='pc'
+
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+
+/* confdefs.h */
+#define PACKAGE_NAME ""
+#define PACKAGE_TARNAME ""
+#define PACKAGE_VERSION ""
+#define PACKAGE_STRING ""
+#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 SIZEOF_LONG 4
+#define _FILE_OFFSET_BITS 64
+#define HAVE_LIBCRYPT 1
+#define HAVE_GETOPT 1
+#define HAVE_READDIR_R 1
+#define HAVE_LIBGL 1
+#define HAVE_LIBGLU 1
+#define HAVE_LIBXINERAMA 1
+
+configure: exit 0