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 2024/01/29 19:27:34 UTC

svn commit: r1915462 - in /openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6: build_aoo64bit_on_centos7.sh config.log

Author: jim
Date: Mon Jan 29 19:27:34 2024
New Revision: 1915462

URL: http://svn.apache.org/viewvc?rev=1915462&view=rev
Log:
Linux 64bit

Added:
    openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh   (with props)
    openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/config.log

Added: openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh?rev=1915462&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh Mon Jan 29 19:27:34 2024
@@ -0,0 +1,106 @@
+#!/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
+
+#
+# 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 ./LinuxX86-64Env.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-Dev5/unxlngix6/build_aoo64bit_on_centos7.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/config.log
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/config.log?rev=1915462&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/config.log (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev5/unxlngix6/config.log Mon Jan 29 19:27:34 2024
@@ -0,0 +1,1701 @@
+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=2024-01-29 11:37:55 (Mon, 29 Jan 2024) - Linux x86_64 --enable-verbose --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-builder64-centos7.localdomain
+uname -m = x86_64
+uname -r = 3.10.0-1160.80.1.el7.x86_64
+uname -s = Linux
+uname -v = #1 SMP Tue Nov 8 15:48:59 UTC 2022
+
+/usr/bin/uname -p = x86_64
+/bin/uname -X     = unknown
+
+/bin/arch              = x86_64
+/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/perl5/bin
+PATH: /home/jim/bin
+PATH: /usr/local/bin
+PATH: /usr/bin
+PATH: /bin
+PATH: /usr/sbin
+PATH: /sbin
+PATH: /opt/X11/bin
+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: x86_64-pc-linux-gnu
+configure:5595: checking host system type
+configure:5608: result: x86_64-pc-linux-gnu
+configure:5628: checking target system type
+configure:5641: result: x86_64-pc-linux-gnu
+configure:5957: checking for pkg-config
+configure:5975: found /usr/bin/pkg-config
+configure:5987: result: /usr/bin/pkg-config
+configure:6012: checking pkg-config is at least version 0.9.0
+configure:6015: result: yes
+configure:6025: checking whether to enable crashdump feature
+configure:6030: result: yes
+configure:6098: checking whether to turn warnings to errors
+configure:6111: result: no
+configure:6116: checking whether to do a debug build
+configure:6127: result: no
+configure:6132: checking whether to build with additional debug utilities
+configure:6144: result: no, full product build
+configure:6151: checking whether to include symbols into final build
+configure:6173: result: no
+configure:6178: checking whether to strip the solver or not.
+configure:6197: result: yes
+configure:6214: checking whether to enable category B components
+configure:6234: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, graphite, coinmp to be built
+configure:6254: checking whether to enable the Online Update support
+configure:6259: result: yes
+configure:6268: checking whether to enable unit tests
+configure:6273: result: yes
+configure:6282: checking whether to enable native CUPS support
+configure:6286: result: yes
+configure:6295: checking whether to enable fontconfig support
+configure:6299: result: yes
+configure:6364: checking whether to use RPATH in shared libraries
+configure:6371: result: yes
+configure:6392: checking whether to use dicts from external paths
+configure:6426: result: no
+configure:6475: checking for bash
+configure:6493: found /usr/bin/bash
+configure:6505: result: /usr/bin/bash
+configure:6520: checking gcc home
+configure:6527: result: /usr
+configure:6589: checking for gcc
+configure:6605: found /usr/bin/gcc
+configure:6616: result: gcc
+configure:6845: checking for C compiler version
+configure:6854: gcc --version >&5
+gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
+Copyright (C) 2015 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:6865: $? = 0
+configure:6854: gcc -v >&5
+Using built-in specs.
+COLLECT_GCC=gcc
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
+Target: x86_64-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 --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
+Thread model: posix
+gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
+configure:6865: $? = 0
+configure:6854: gcc -V >&5
+gcc: error: unrecognized command line option '-V'
+gcc: fatal error: no input files
+compilation terminated.
+configure:6865: $? = 4
+configure:6854: gcc -qversion >&5
+gcc: error: unrecognized command line option '-qversion'
+gcc: fatal error: no input files
+compilation terminated.
+configure:6865: $? = 4
+configure:6885: checking whether the C compiler works
+configure:6907: gcc    conftest.c  >&5
+configure:6911: $? = 0
+configure:6959: result: yes
+configure:6962: checking for C compiler default output file name
+configure:6964: result: a.out
+configure:6970: checking for suffix of executables
+configure:6977: gcc -o conftest    conftest.c  >&5
+configure:6981: $? = 0
+configure:7003: result: 
+configure:7025: checking whether we are cross compiling
+configure:7033: gcc -o conftest    conftest.c  >&5
+configure:7037: $? = 0
+configure:7044: ./conftest
+configure:7048: $? = 0
+configure:7063: result: no
+configure:7068: checking for suffix of object files
+configure:7090: gcc -c   conftest.c >&5
+configure:7094: $? = 0
+configure:7115: result: o
+configure:7119: checking whether we are using the GNU C compiler
+configure:7138: gcc -c   conftest.c >&5
+configure:7138: $? = 0
+configure:7147: result: yes
+configure:7156: checking whether gcc accepts -g
+configure:7176: gcc -c -g  conftest.c >&5
+configure:7176: $? = 0
+configure:7217: result: yes
+configure:7234: checking for gcc option to accept ISO C89
+configure:7297: gcc  -c -g -O2  conftest.c >&5
+configure:7297: $? = 0
+configure:7310: result: none needed
+configure:7338: checking for gcc
+configure:7356: found /usr/bin/gcc
+configure:7368: result: /usr/bin/gcc
+configure:7386: checking the GNU gcc compiler version
+configure:7405: result: checked (gcc 4.8.5)
+configure:7422: checking for -Bsymbolic-functions linker support 
+configure:7442: gcc -o conftest -g -O2   -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo conftest.c  >&5
+configure:7442: $? = 0
+configure:7448: result: found 
+configure:7458: checking whether to enable pch feature
+configure:7476: result: no
+configure:7481: checking for GNU make
+configure:7490: result: make
+configure:7496: checking the GNU make version
+configure:7501: result: make 3.82
+3+:
+configure:7508: checking for dmake
+configure:7564: looking for dmake at /usr/local/bin/dmake
+configure:7567: result: using user provided dmake
+configure:7590: checking whether the found dmake is the right dmake
+configure:7600: result: yes
+configure:7602: checking the dmake version
+configure:7610: result: OK, >= 4.11
+configure:7630: checking for GNU or compatible BSD tar
+configure:7639: result: gtar
+configure:7715: checking for --hash-style=both linker support 
+configure:7734: gcc -o conftest -g -O2   -Wl,--hash-style=both conftest.c  >&5
+configure:7734: $? = 0
+configure:7742: result: found 
+configure:7818: checking for perl
+configure:7836: found /usr/bin/perl
+configure:7848: result: /usr/bin/perl
+configure:7869: checking the Perl version
+configure:7876: result: checked (perl 5)
+configure:7883: checking for required Perl modules
+configure:7891: result: all modules found
+configure:8402: checking how to run the C preprocessor
+configure:8433: gcc -E  conftest.c
+configure:8433: $? = 0
+configure:8447: 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:8447: $? = 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:8472: result: gcc -E
+configure:8492: gcc -E  conftest.c
+configure:8492: $? = 0
+configure:8506: 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:8506: $? = 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:8535: checking for ANSI C header files
+configure:8555: gcc -c -g -O2  conftest.c >&5
+configure:8555: $? = 0
+configure:8628: gcc -o conftest -g -O2   conftest.c  >&5
+configure:8628: $? = 0
+configure:8628: ./conftest
+configure:8628: $? = 0
+configure:8639: result: yes
+configure:8708: checking for g++
+configure:8724: found /usr/bin/g++
+configure:8735: result: g++
+configure:8762: checking for C++ compiler version
+configure:8771: g++ --version >&5
+g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
+Copyright (C) 2015 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:8782: $? = 0
+configure:8771: g++ -v >&5
+Using built-in specs.
+COLLECT_GCC=g++
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
+Target: x86_64-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 --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
+Thread model: posix
+gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
+configure:8782: $? = 0
+configure:8771: g++ -V >&5
+g++: error: unrecognized command line option '-V'
+g++: fatal error: no input files
+compilation terminated.
+configure:8782: $? = 4
+configure:8771: g++ -qversion >&5
+g++: error: unrecognized command line option '-qversion'
+g++: fatal error: no input files
+compilation terminated.
+configure:8782: $? = 4
+configure:8786: checking whether we are using the GNU C++ compiler
+configure:8805: g++ -c   conftest.cpp >&5
+configure:8805: $? = 0
+configure:8814: result: yes
+configure:8823: checking whether g++ accepts -g
+configure:8843: g++ -c -g  conftest.cpp >&5
+configure:8843: $? = 0
+configure:8884: result: yes
+configure:8912: checking how to run the C++ preprocessor
+configure:8939: g++ -E  conftest.cpp
+configure:8939: $? = 0
+configure:8953: 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:8953: $? = 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:8978: result: g++ -E
+configure:8998: g++ -E  conftest.cpp
+configure:8998: $? = 0
+configure:9012: 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:9012: $? = 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:9049: checking how to run the C preprocessor
+configure:9119: result: gcc -E
+configure:9139: gcc -E  conftest.c
+configure:9139: $? = 0
+configure:9153: 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:9153: $? = 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:9189: checking for sys/types.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for sys/stat.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for stdlib.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for string.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for memory.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for strings.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for inttypes.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for stdint.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9189: checking for unistd.h
+configure:9189: gcc -c -g -O2  conftest.c >&5
+configure:9189: $? = 0
+configure:9189: result: yes
+configure:9205: checking size of long
+configure:9210: gcc -o conftest -g -O2   conftest.c  >&5
+configure:9210: $? = 0
+configure:9210: ./conftest
+configure:9210: $? = 0
+configure:9224: result: 8
+configure:9236: checking whether byte ordering is bigendian
+configure:9251: 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:9251: $? = 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 8
+| /* end confdefs.h.  */
+| #ifndef __APPLE_CC__
+| 	       not a universal capable compiler
+| 	     #endif
+| 	     typedef int dummy;
+| 
+configure:9296: gcc -c -g -O2  conftest.c >&5
+configure:9296: $? = 0
+configure:9314: 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:9314: $? = 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 8
+| /* 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:9442: result: no
+configure:9470: checking for special C compiler options needed for large files
+configure:9515: result: no
+configure:9521: checking for _FILE_OFFSET_BITS value needed for large files
+configure:9546: gcc -c -g -O2  conftest.c >&5
+configure:9546: $? = 0
+configure:9578: result: no
+configure:9710: checking cups/cups.h usability
+configure:9710: gcc -c -g -O2  conftest.c >&5
+configure:9710: $? = 0
+configure:9710: result: yes
+configure:9710: checking cups/cups.h presence
+configure:9710: gcc -E  conftest.c
+configure:9710: $? = 0
+configure:9710: result: yes
+configure:9710: checking for cups/cups.h
+configure:9710: result: yes
+configure:9721: checking whether to enable pam support
+configure:9724: result: yes
+configure:9727: checking security/pam_appl.h usability
+configure:9727: gcc -c -g -O2  conftest.c >&5
+configure:9727: $? = 0
+configure:9727: result: yes
+configure:9727: checking security/pam_appl.h presence
+configure:9727: gcc -E  conftest.c
+configure:9727: $? = 0
+configure:9727: result: yes
+configure:9727: checking for security/pam_appl.h
+configure:9727: result: yes
+configure:9735: checking whether to link to libpam
+configure:9789: result: no, dynamically open it
+configure:9806: checking whether to link to libcrypt
+configure:9809: result: yes
+configure:9812: checking for crypt in -lcrypt
+configure:9837: gcc -o conftest -g -O2   conftest.c -lcrypt   >&5
+configure:9837: $? = 0
+configure:9846: result: yes
+configure:9992: checking for C++ compiler version
+configure:10001: g++ --version >&5
+g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
+Copyright (C) 2015 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:10012: $? = 0
+configure:10001: g++ -v >&5
+Using built-in specs.
+COLLECT_GCC=g++
+COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
+Target: x86_64-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 --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
+Thread model: posix
+gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) 
+configure:10012: $? = 0
+configure:10001: g++ -V >&5
+g++: error: unrecognized command line option '-V'
+g++: fatal error: no input files
+compilation terminated.
+configure:10012: $? = 4
+configure:10001: g++ -qversion >&5
+g++: error: unrecognized command line option '-qversion'
+g++: fatal error: no input files
+compilation terminated.
+configure:10012: $? = 4
+configure:10016: checking whether we are using the GNU C++ compiler
+configure:10044: result: yes
+configure:10053: checking whether g++ accepts -g
+configure:10114: result: yes
+configure:10140: checking the GNU C++ compiler version
+configure:10146: result: checked (g++ 4.8.5)
+configure:10334: checking exception type
+configure:10369: result: 
+configure:10380: checking what the default STL should be
+configure:10392: checking whether gcc supports -fvisibility=hidden
+configure:10407: gcc -o conftest -g -O2 -fvisibility=hidden   conftest.c -lcrypt  >&5
+configure:10407: $? = 0
+configure:10414: result: yes
+configure:10425: checking whether we are allowed and able to use --ccache-skip
+configure:10428: result: only used on Mac currently, skipping
+configure:10676: checking which memory allocator to use
+configure:10824: result: internal
+configure:10830: checking whether to add custom build version
+configure:10834: result: yes, 2024-01-29 11:37:55 (Mon, 29 Jan 2024) - Linux x86_64
+configure:10843: checking whether to build with Java support
+configure:10846: result: yes
+configure:10941: checking the installed JDK
+configure:11023: result: checked (JDK 1.7.0_261)
+configure:11354: checking for jawt lib name
+configure:11524: result: -ljawt
+configure:11530: checking whether to enable gcj aot compilation
+configure:11595: result: no
+configure:11611: checking whether to enable EPM for packing
+configure:11614: result: yes
+configure:11678: checking whether the found EPM is the right EPM
+configure:11681: result: yes
+configure:11686: checking EPM version
+configure:11690: result: OK, >= 5.0
+configure:11701: checking which package format to use
+configure:11769: result: rpm deb
+configure:11772: checking for rpm
+configure:11791: result: /usr/bin/rpmbuild
+configure:11800: checking for dpkg
+configure:11818: found /usr/bin/dpkg
+configure:11831: result: /usr/bin/dpkg
+configure:11844: checking for fakeroot
+configure:11862: found /usr/bin/fakeroot
+configure:11875: result: /usr/bin/fakeroot
+configure:11967: checking for gperf
+configure:11985: found /usr/bin/gperf
+configure:11997: result: /usr/bin/gperf
+configure:12008: checking for gperf
+configure:12038: result: /usr/bin/gperf
+configure:12056: checking gperf version
+configure:12059: result: OK
+configure:12067: checking whether to build the stax
+configure:12075: result: yes
+configure:12080: checking whether to build the ODK
+configure:12083: result: yes
+configure:12086: checking for external/unowinreg/unowinreg.dll
+configure:12094: result: found
+configure:12450: checking whether to provide libstdc++/libgcc_s in the installset
+configure:12454: result: no
+configure:12467: checking which zlib to use
+configure:12525: result: internal
+configure:12532: checking which jpeg to use
+configure:12591: result: internal
+configure:12598: checking which expat to use
+configure:12662: result: internal
+configure:12670: checking whether freetype is available
+configure:12674: checking for FREETYPE
+configure:12681: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:12684: $? = 0
+configure:12698: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:12701: $? = 0
+configure:12759: result: yes
+configure:12773: checking for FT_GlyphSlot_Embolden in -lfreetype
+configure:12798: gcc -o conftest -g -O2  -I/usr/include/freetype2 -I/usr/include/libpng15    -lfreetype   conftest.c -lfreetype  -lcrypt  >&5
+configure:12798: $? = 0
+configure:12807: result: yes
+configure:12842: checking which libxslt to use
+configure:12993: result: internal
+configure:13003: checking which libxml to use
+configure:13110: result: internal
+configure:13176: checking which python to use
+configure:13611: result: internal
+configure:13621: checking for bzip2
+configure:13639: found /usr/bin/bzip2
+configure:13651: result: /usr/bin/bzip2
+configure:13670: checking which lucene to use
+configure:13879: result: internal
+configure:13888: checking whether to build the MySQL Connector extension
+configure:13904: result: no
+configure:14134: checking which hsqldb to use
+configure:14197: result: internal
+configure:14206: checking which beanshell to use
+configure:14240: result: internal
+configure:14256: checking which saxon to use
+configure:14454: result: internal
+configure:14470: checking whether to enable support for JavaScript
+configure:14474: result: yes
+configure:14488: checking which libapr to use
+configure:14586: result: internal
+configure:14599: checking which libapr-util to use
+configure:14697: result: internal
+configure:14710: checking which libserf to use
+configure:14809: result: internal
+configure:14823: checking whether to enable support for CoinMP
+configure:14827: result: yes
+configure:14831: checking which coinmp to use
+configure:15020: result: internal
+configure:15039: checking which curl to use
+configure:15105: result: internal
+configure:15114: checking which mdds to use
+configure:15142: result: internal
+configure:15149: checking which boost to use
+configure:15224: result: internal
+configure:15231: checking which vigra to use
+configure:15259: result: internal
+configure:15266: checking which odbc headers to use
+configure:15283: result: internal
+configure:15290: checking whether to build XML Security support
+configure:15296: result: yes
+configure:15300: checking whether to build LDAP configuration backend
+configure:15438: checking whether to build the internal NSS module
+configure:15443: result: yes
+configure:15483: checking which sane header to use
+configure:15499: result: internal
+configure:15506: checking which icu to use
+configure:15730: result: internal
+configure:15745: checking whether to enable graphite support
+configure:15748: result: yes
+configure:15751: checking which graphite to use
+configure:15850: result: internal
+configure:15895: checking for X
+configure:16003: gcc -E  conftest.c
+configure:16003: $? = 0
+configure:16034: gcc -o conftest -g -O2   conftest.c -lX11 -lcrypt  >&5
+configure:16034: $? = 0
+configure:16084: result: libraries , headers 
+configure:16183: gcc -o conftest -g -O2   conftest.c -lcrypt   -lX11 >&5
+configure:16183: $? = 0
+configure:16281: checking for gethostbyname
+configure:16281: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16281: $? = 0
+configure:16281: result: yes
+configure:16378: checking for connect
+configure:16378: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16378: $? = 0
+configure:16378: result: yes
+configure:16427: checking for remove
+configure:16427: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16427: $? = 0
+configure:16427: result: yes
+configure:16476: checking for shmat
+configure:16476: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:16476: $? = 0
+configure:16476: result: yes
+configure:16534: checking for IceConnectionNumber in -lICE
+configure:16559: gcc -o conftest -g -O2   conftest.c -lICE  -lcrypt  >&5
+configure:16559: $? = 0
+configure:16568: result: yes
+configure:16594: checking for XOpenDisplay in -lX11
+configure:16619: gcc -o conftest      conftest.c -lX11  -lcrypt  >&5
+configure:16619: $? = 0
+configure:16628: result: yes
+configure:16636: checking for XauDisposeAuth in -lXau
+configure:16661: gcc -o conftest      conftest.c -lXau  -lcrypt  >&5
+configure:16661: $? = 0
+configure:16670: result: yes
+configure:16704: checking fontconfig/fontconfig.h usability
+configure:16704: gcc -c    conftest.c >&5
+configure:16704: $? = 0
+configure:16704: result: yes
+configure:16704: checking fontconfig/fontconfig.h presence
+configure:16704: gcc -E   conftest.c
+configure:16704: $? = 0
+configure:16704: result: yes
+configure:16704: checking for fontconfig/fontconfig.h
+configure:16704: result: yes
+configure:16712: checking whether fontconfig is >= 2.2.0
+configure:16731: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:16731: $? = 0
+configure:16731: ./conftest
+configure:16731: $? = 0
+configure:16732: result: yes
+configure:16743: checking whether to link to Xrender
+configure:16751: result: no, dynamically open it
+configure:16755: checking which Xrender headers to use
+configure:16771: result: internal
+configure:16828: checking whether to enable RandR support
+configure:16839: checking for XRANDR
+configure:16846: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+configure:16849: $? = 0
+configure:16863: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+configure:16866: $? = 0
+configure:16904: result: yes
+configure:16981: checking which libnss to use
+configure:17079: result: internal
+configure:17088: checking which libssl to use
+configure:17192: result: internal
+configure:17201: checking which redland library to use
+configure:17300: result: internal
+configure:17309: checking whether to build the Spell Checking component
+configure:17314: checking which libhunspell to use
+configure:17465: result: internal
+configure:17480: checking whether to build the Hyphenator component
+configure:17485: checking which libhyphen to use
+configure:17639: result: internal
+configure:17666: checking which mythes to use
+configure:17849: result: internal
+configure:17859: checking which libtextcat to use
+configure:17921: result: internal
+configure:17928: checking which libtextcat data directory to use
+configure:17939: result: internal
+configure:17946: checking whether libc is >= 2.1.1
+configure:17949: checking for gnu_get_libc_version in -lc
+configure:17974: gcc -o conftest      conftest.c -lc  -lcrypt  >&5
+configure:17974: $? = 0
+configure:17983: result: yes
+configure:17991: result: yes
+configure:18001: checking for getopt
+configure:18001: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:18001: $? = 0
+configure:18001: result: yes
+configure:18014: checking for readdir_r
+configure:18014: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:18014: $? = 0
+configure:18014: result: yes
+configure:18391: checking for bison
+configure:18409: found /usr/bin/bison
+configure:18421: result: /usr/bin/bison
+configure:18432: checking the bison version
+configure:18443: result: checked (/usr/bin/bison 3.0.4)
+configure:18452: checking for flex
+configure:18470: found /usr/bin/flex
+configure:18482: result: /usr/bin/flex
+configure:18495: checking for patch
+configure:18513: found /usr/bin/patch
+configure:18525: result: /usr/bin/patch
+configure:18568: checking for gnucp
+configure:18601: result: no
+configure:18568: checking for cp
+configure:18586: found /usr/bin/cp
+configure:18598: result: /usr/bin/cp
+configure:18621: checking whether /usr/bin/cp is GNU cp from coreutils with preserve= support
+configure:18624: result: yes
+configure:18835: checking for zip
+configure:18853: found /usr/bin/zip
+configure:18865: result: /usr/bin/zip
+configure:18875: checking for unzip
+configure:18893: found /usr/bin/unzip
+configure:18905: result: /usr/bin/unzip
+configure:19008: checking which VCLplugs shall be built
+configure:19035: result: gtk
+configure:19041: checking whether to enable GConf support
+configure:19045: result: yes
+configure:19049: checking for GCONF
+configure:19056: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:19059: $? = 0
+configure:19073: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:19076: $? = 0
+configure:19134: result: yes
+configure:19146: checking whether to enable GNOME VFS support
+configure:19337: result: no
+configure:19352: checking for GTK
+configure:19359: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:19362: $? = 0
+configure:19376: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:19379: $? = 0
+configure:19417: result: yes
+configure:19423: checking for GTHREAD
+configure:19430: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:19433: $? = 0
+configure:19447: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:19450: $? = 0
+configure:19488: result: yes
+configure:19497: checking for GTK_2_10
+configure:19504: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:19507: $? = 0
+configure:19521: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:19524: $? = 0
+configure:19562: result: yes
+configure:19569: checking whether to enable DBUS support
+configure:19573: result: yes
+configure:19577: checking for DBUS
+configure:19584: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:19587: $? = 0
+configure:19601: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:19604: $? = 0
+configure:19662: result: yes
+configure:19671: checking whether to enable GIO support
+configure:19678: result: yes
+configure:19682: checking for GIO
+configure:19689: $PKG_CONFIG --exists --print-errors "gio-2.0 "
+configure:19692: $? = 0
+configure:19706: $PKG_CONFIG --exists --print-errors "gio-2.0 "
+configure:19709: $? = 0
+configure:19767: result: yes
+configure:19793: checking whether to build the GStreamer media backend
+configure:19798: checking for GSTREAMER
+configure:19805: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-1.0 gstreamer-video-1.0"
+configure:19808: $? = 0
+configure:19822: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-1.0 gstreamer-video-1.0"
+configure:19825: $? = 0
+configure:19863: result: yes
+configure:19868: result: yes
+configure:19904: checking whether to use cairo
+configure:20055: result: no
+configure:20073: checking whether to build the OpenGL Transitions component
+configure:20078: result: yes
+configure:20080: checking GL/gl.h usability
+configure:20080: gcc -c    conftest.c >&5
+configure:20080: $? = 0
+configure:20080: result: yes
+configure:20080: checking GL/gl.h presence
+configure:20080: gcc -E   conftest.c
+configure:20080: $? = 0
+configure:20080: result: yes
+configure:20080: checking for GL/gl.h
+configure:20080: result: yes
+configure:20088: checking for main in -lGL
+configure:20107: gcc -o conftest      conftest.c -lGL  -lcrypt  >&5
+configure:20107: $? = 0
+configure:20116: result: yes
+configure:20129: checking for main in -lGLU
+configure:20148: gcc -o conftest      conftest.c -lGLU  -lGL -lcrypt  >&5
+configure:20148: $? = 0
+configure:20157: result: yes
+configure:20179: checking whether to build the PDF Import extension
+configure:20291: result: no
+configure:20300: checking whether to build the Wiki Publisher extension
+configure:20303: result: yes
+configure:20305: checking for swext module
+configure:20308: result: OK
+configure:20323: checking which Servlet API Jar to use
+configure:20356: result: internal
+configure:20365: checking whether to build the Report Builder extension
+configure:21133: result: no
+configure:21154: checking which Apache commons-* libs to use
+configure:21469: result: internal
+configure:21831: checking whether to enable the lockdown pieces
+configure:21839: result: no
+configure:21844: checking whether to enable evolution 2 support
+configure:21943: result: no
+configure:21950: checking whether to include MathMLDTD
+configure:21958: result: yes
+configure:21969: checking whether to include category B fonts
+configure:21972: result: yes
+configure:21984: checking whether to include category A fonts
+configure:21987: result: yes
+configure:21999: checking whether any fonts are included
+configure:22004: result: yes
+configure:22015: checking whether to include PPDs
+configure:22018: result: yes
+configure:22028: checking whether to include AFMs
+configure:22031: result: yes
+configure:22044: checking whether and how to use Xinerama
+configure:22080: result: yes, with dynamic linking
+configure:22082: checking X11/extensions/Xinerama.h usability
+configure:22082: gcc -c    conftest.c >&5
+configure:22082: $? = 0
+configure:22082: result: yes
+configure:22082: checking X11/extensions/Xinerama.h presence
+configure:22082: gcc -E   conftest.c
+configure:22082: $? = 0
+configure:22082: result: yes
+configure:22082: checking for X11/extensions/Xinerama.h
+configure:22082: result: yes
+configure:22097: checking for XineramaIsActive in -lXinerama
+configure:22122: gcc -o conftest      conftest.c -lXinerama -L/usr/lib64 -lXext -ldl -lGLU -lGL -lcrypt  >&5
+configure:22122: $? = 0
+configure:22131: result: yes
+configure:22183: checking whether to build own version of libpng
+configure:22199: result: no
+configure:22206: checking whether to build own version of libjpeg
+configure:22226: result: no
+configure:22235: checking whether to trigger rat scan
+configure:22238: result: no
+configure:22419: checking for apache-ant
+configure:22453: result: no
+configure:22419: checking for ant
+configure:22438: found /usr/local/share/java/apache-ant/bin/ant
+configure:22450: result: /usr/local/share/java/apache-ant/bin/ant
+configure:22485: checking if /usr/local/share/java/apache-ant/bin/ant works
+configure:22510: /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:22513: $? = 0
+configure:22516: result: Ant works
+configure:22544: checking Ant lib directory
+configure:22571: result: Ant lib directory found.
+configure:22584: checking whether ant is >= 1.9.1
+configure: ant_version 1.9.12 
+configure: ant_version_major 1 
+configure: ant_version_minor 9 
+configure:22596: result: yes, 1.9.12
+configure:22603: checking whether ant supports mapper type="regexp"
+configure:22636: /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:22639: $? = 0
+configure:22642: result: yes
+configure:22739: checking for hamcrest-core
+configure:22795: result: no, skipping
+configure:22806: checking which languages to be built
+configure:22813: 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:22820: checking which languages have poor help localizations
+configure:22824: result: none
+configure:22832: checking which dictionaries to include
+configure:22836: result: ALL
+configure:22845: checking for additional 'intro' bitmaps
+configure:22850: result: none
+configure:22868: checking for additional 'about' bitmaps
+configure:22873: result: none
+configure:22892: checking for vendor
+configure:22895: result: not set
+configure:22905: checking for UNIX wrapper name
+configure:22908: result: not set
+configure:22917: checking whether to statically link to Gtk
+configure:22925: result: no
+configure:22930: checking whether to use layout dialogs
+configure:22938: result: no
+configure:22946: checking build verbosity
+configure:22951: result: high
+configure:22965: checking whether to enable dependency tracking
+configure:22972: result: yes
+configure:22989: checking solver path
+configure:22993: result: default
+configure:23012: writing config.status
+configure:23165: 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-builder64-centos7.localdomain
+
+config.status:1132: creating set_soenv
+config.status:1132: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=x86_64-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=x86_64-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/bin/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=8
+ac_cv_sys_file_offset_bits=no
+ac_cv_sys_largefile_CC=no
+ac_cv_target=x86_64-pc-linux-gnu
+pkg_cv_DBUS_CFLAGS='-I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  '
+pkg_cv_DBUS_LIBS='-ldbus-glib-1 -ldbus-1 -lgobject-2.0 -lglib-2.0  '
+pkg_cv_FREETYPE_CFLAGS='-I/usr/include/freetype2 -I/usr/include/libpng15  '
+pkg_cv_FREETYPE_LIBS='-lfreetype  '
+pkg_cv_GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/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/lib64/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/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm -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 -lfontconfig -lfreetype -lgthread-2.0 -lgstvideo-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0  '
+pkg_cv_GTHREAD_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib64/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/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm  '
+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 -lfontconfig -lgobject-2.0 -lglib-2.0 -lfreetype  '
+pkg_cv_GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm  '
+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 -lfontconfig -lfreetype -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='2024-01-29 11:37:55 (Mon, 29 Jan 2024) - Linux x86_64'
+BUILD_WIN64=''
+BUILD_X64=''
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2='/usr/bin/bzip2'
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='gcc'
+CCACHE=''
+CCNUMVER='000400080005'
+CCVER='4.8.5'
+CC_PATH='/usr/bin/'
+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'
+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/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  '
+DBUS_LIBS='-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=8 -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 -I/usr/include/libpng15  '
+FREETYPE_LIBS='-lfreetype  '
+GCCVER='40805'
+GCC_HOME='/usr'
+GCONF_CFLAGS='-pthread -I/usr/include/gconf/2 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include  '
+GCONF_LIBS='-lgconf-2 -lglib-2.0  '
+GIO_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib64/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/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm -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 -lfontconfig -lfreetype -lgthread-2.0 -lgstvideo-1.0 -lgstbase-1.0 -lgstreamer-1.0 -lgobject-2.0 -lglib-2.0  '
+GTHREAD_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib64/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/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm  '
+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 -lfontconfig -lgobject-2.0 -lglib-2.0 -lfreetype  '
+GTK_CFLAGS='-pthread -I/usr/include/gtk-2.0 -I/usr/lib64/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/fribidi -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng15 -I/usr/include/uuid -I/usr/include/pixman-1 -I/usr/include/libdrm  '
+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 -lfontconfig -lfreetype -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=no'
+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='8'
+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='TRUE'
+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/lib64'
+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='x86_64-pc-linux-gnu'
+build_alias=''
+build_cpu='x86_64'
+build_os='linux-gnu'
+build_vendor='pc'
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host='x86_64-pc-linux-gnu'
+host_alias=''
+host_cpu='x86_64'
+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='x86_64-pc-linux-gnu'
+target_alias=''
+target_cpu='x86_64'
+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 8
+#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