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 2021/08/23 11:33:27 UTC

svn commit: r1892544 [1/2] - in /openoffice/devtools/build-scripts/4.1.11: unxlngi6/build_aoo32bit_on_centos5.sh unxlngi6/config.log unxlngix6/build_aoo64bit_on_centos5.sh unxlngix6/config.log

Author: jim
Date: Mon Aug 23 11:33:27 2021
New Revision: 1892544

URL: http://svn.apache.org/viewvc?rev=1892544&view=rev
Log:
4.1.11-dev test builds - Linux 64 and 32

Added:
    openoffice/devtools/build-scripts/4.1.11/unxlngi6/build_aoo32bit_on_centos5.sh   (with props)
    openoffice/devtools/build-scripts/4.1.11/unxlngi6/config.log
    openoffice/devtools/build-scripts/4.1.11/unxlngix6/build_aoo64bit_on_centos5.sh   (with props)
    openoffice/devtools/build-scripts/4.1.11/unxlngix6/config.log

Added: openoffice/devtools/build-scripts/4.1.11/unxlngi6/build_aoo32bit_on_centos5.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.11/unxlngi6/build_aoo32bit_on_centos5.sh?rev=1892544&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.1.11/unxlngi6/build_aoo32bit_on_centos5.sh (added)
+++ openoffice/devtools/build-scripts/4.1.11/unxlngi6/build_aoo32bit_on_centos5.sh Mon Aug 23 11:33:27 2021
@@ -0,0 +1,84 @@
+#!/usr/bin/env bash
+
+#
+# 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
+
+wget -O external/unowinreg/unowinreg.dll http://www.openoffice.org/tools/unowinreg_prebuild/680/unowinreg.dll
+
+LANGS="ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"
+
+if [ ! -e configure -o configure.in -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+./configure   \
+	--with-build-version="$(date +"%Y-%m-%d %H:%M") - `uname -sm`${AOO_BUILD_VERSION}" \
+	${AOO_VERBOSE_BUILD} \
+	--with-system-stdlibs \
+	--enable-crashdump=yes \
+	--enable-category-b \
+	--enable-wiki-publisher \
+	--enable-bundled-dictionaries \
+	--enable-opengl  \
+	--enable-dbus  \
+	--enable-gstreamer \
+	--without-junit \
+	--without-stlport \
+	--with-ant-home=$HOME/ant \
+	--with-package-format="rpm deb" \
+	--with-lang="${LANGS}" \
+	--with-dmake-url=http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2 \
+	--with-epm-url=http://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz \
+	| tee config.out || exit 1
+
+source ./LinuxX86Env.Set.sh || exit 1 
+./bootstrap || exit 1
+cd instsetoo_native
+time perl "$SOLARENV/bin/build.pl" --all -- -P6 || exit 1
+cd util
+if [ "$AOO_BUILD_BETA" = "yes" ]; then
+	dmake -P6 openofficebeta  || exit 1
+	dmake -P6 sdkoobeta_en-US || exit 1
+	dmake -P6 ooobetalanguagepack || exit 1
+elif [ "$AOO_BUILD_DEV" = "yes" ]; then
+	dmake -P6 openofficedev  || exit 1
+	dmake -P6 sdkoodev_en-US || exit 1
+	dmake -P6 ooodevlanguagepack || exit 1
+else
+	dmake -P6 ooolanguagepack || exit 1
+	dmake -P6 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.1.11/unxlngi6/build_aoo32bit_on_centos5.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: openoffice/devtools/build-scripts/4.1.11/unxlngi6/config.log
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.11/unxlngi6/config.log?rev=1892544&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.1.11/unxlngi6/config.log (added)
+++ openoffice/devtools/build-scripts/4.1.11/unxlngi6/config.log Mon Aug 23 11:33:27 2021
@@ -0,0 +1,2108 @@
+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.59.  Invocation command line was
+
+  $ ./configure --with-build-version=2021-08-23 06:58 - Linux i686 [Apache OpenOffice Test Development Build] --enable-verbose --with-system-stdlibs --enable-crashdump=yes --enable-category-b --enable-wiki-publisher --enable-bundled-dictionaries --enable-opengl --enable-dbus --enable-gstreamer --without-junit --without-stlport --with-ant-home=/home/jim/ant --with-package-format=rpm deb --with-lang=ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW --with-dmake-url=http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2 --with-epm-url=http://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = aoo-builder32-centos5.localdomain
+uname -m = i686
+uname -r = 2.6.18-419.el5.centos.plusPAE
+uname -s = Linux
+uname -v = #1 SMP Sat Feb 25 15:18:00 UTC 2017
+
+/usr/bin/uname -p = unknown
+/bin/uname -X     = unknown
+
+/bin/arch              = i686
+/usr/bin/arch -k       = unknown
+/usr/convex/getsysinfo = unknown
+hostinfo               = unknown
+/bin/machine           = unknown
+/usr/bin/oslevel       = unknown
+/bin/universe          = unknown
+
+PATH: /home/jim/bin
+PATH: /usr/kerberos/bin
+PATH: /usr/lib/ccache
+PATH: /home/jim/bin
+PATH: /usr/local/bin
+PATH: /usr/bin
+PATH: /bin
+PATH: /usr/X11R6/bin
+PATH: .
+PATH: /home/jim/bin
+PATH: .
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:3479: checking whether configure is up-to-date
+configure:3488: result: yes
+configure:3515: checking for egrep
+configure:3525: result: grep -E
+configure:3534: checking for gawk
+configure:3550: found /usr/bin/gawk
+configure:3560: result: gawk
+configure:3572: checking for gawk
+configure:3590: found /usr/bin/gawk
+configure:3602: result: /usr/bin/gawk
+configure:3619: checking for sed
+configure:3637: found /bin/sed
+configure:3649: result: /bin/sed
+configure:3665: checking for solenv environment
+configure:3669: result: default
+configure:3698: checking for custom pack.lst
+configure:3712: result: no
+configure:3750: checking build system type
+configure:3768: result: i686-pc-linux-gnu
+configure:3776: checking host system type
+configure:3790: result: i686-pc-linux-gnu
+configure:3798: checking target system type
+configure:3812: result: i686-pc-linux-gnu
+configure:4110: checking for pkg-config
+configure:4128: found /usr/bin/pkg-config
+configure:4140: result: /usr/bin/pkg-config
+configure:4155: checking pkg-config is at least version 0.9.0
+configure:4158: result: yes
+configure:4168: checking whether to enable crashdump feature
+configure:4173: result: yes
+configure:4216: checking whether to turn warnings to errors
+configure:4229: result: no
+configure:4234: checking whether to do a debug build
+configure:4245: result: no
+configure:4250: checking whether to build with additional debug utilities
+configure:4262: result: no, full product build
+configure:4269: checking whether to include symbols into final build
+configure:4293: result: no
+configure:4298: checking whether to strip the solver or not.
+configure:4319: result: yes
+configure:4336: checking whether to enable category B components
+configure:4357: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, beanshell, graphite, coinmp to be built
+configure:4378: checking whether to enable the Online Update support
+configure:4383: result: yes
+configure:4393: checking whether to enable native CUPS support
+configure:4397: result: yes
+configure:4406: checking whether to enable fontconfig support
+configure:4410: result: yes
+configure:4475: checking whether to use RPATH in shared libraries
+configure:4482: result: yes
+configure:4503: checking whether to use dicts from external paths
+configure:4537: result: no
+configure:4592: checking for bash
+configure:4610: found /bin/bash
+configure:4622: result: /bin/bash
+configure:4638: checking gcc home
+configure:4645: result: /usr/lib/ccache/gcc
+configure:4705: checking for gcc
+configure:4721: found /usr/lib/ccache/gcc
+configure:4731: result: gcc
+configure:4975: checking for C compiler version
+configure:4978: gcc --version </dev/null >&5
+gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-55)
+Copyright (C) 2006 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:4981: $? = 0
+configure:4983: gcc -v </dev/null >&5
+Using built-in specs.
+Target: i386-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
+Thread model: posix
+gcc version 4.1.2 20080704 (Red Hat 4.1.2-55)
+configure:4986: $? = 0
+configure:4988: gcc -V </dev/null >&5
+gcc: '-V' option must have argument
+configure:4991: $? = 1
+configure:5014: checking for C compiler default output file name
+configure:5017: gcc    conftest.c  >&5
+configure:5020: $? = 0
+configure:5066: result: a.out
+configure:5071: checking whether the C compiler works
+configure:5077: ./a.out
+configure:5080: $? = 0
+configure:5097: result: yes
+configure:5104: checking whether we are cross compiling
+configure:5106: result: no
+configure:5109: checking for suffix of executables
+configure:5111: gcc -o conftest    conftest.c  >&5
+configure:5114: $? = 0
+configure:5139: result: 
+configure:5145: checking for suffix of object files
+configure:5166: gcc -c   conftest.c >&5
+configure:5169: $? = 0
+configure:5191: result: o
+configure:5195: checking whether we are using the GNU C compiler
+configure:5219: gcc -c   conftest.c >&5
+configure:5225: $? = 0
+configure:5229: test -z 
+			 || test ! -s conftest.err
+configure:5232: $? = 0
+configure:5235: test -s conftest.o
+configure:5238: $? = 0
+configure:5251: result: yes
+configure:5257: checking whether gcc accepts -g
+configure:5278: gcc -c -g  conftest.c >&5
+configure:5284: $? = 0
+configure:5288: test -z 
+			 || test ! -s conftest.err
+configure:5291: $? = 0
+configure:5294: test -s conftest.o
+configure:5297: $? = 0
+configure:5308: result: yes
+configure:5325: checking for gcc option to accept ANSI C
+configure:5395: gcc  -c -g -O2  conftest.c >&5
+configure:5401: $? = 0
+configure:5405: test -z 
+			 || test ! -s conftest.err
+configure:5408: $? = 0
+configure:5411: test -s conftest.o
+configure:5414: $? = 0
+configure:5432: result: none needed
+configure:5450: gcc -c -g -O2  conftest.c >&5
+conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me'
+configure:5456: $? = 1
+configure: failed program was:
+| #ifndef __cplusplus
+|   choke me
+| #endif
+configure:5614: checking for gcc
+configure:5632: found /usr/lib/ccache/gcc
+configure:5644: result: /usr/lib/ccache/gcc
+configure:5661: checking the GNU gcc compiler version
+configure:5684: result: checked (gcc 4.1.2)
+configure:5703: checking for -Bsymbolic-functions linker support 
+configure:5728: gcc -o conftest -g -O2   -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo conftest.c  >&5
+/usr/bin/ld: unrecognized option '-Bsymbolic-functions'
+/usr/bin/ld: use the --help option for usage information
+collect2: ld returned 1 exit status
+configure:5734: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| /* end confdefs.h.  */
+| 
+|    #include <stdio.h>
+| 
+| int
+| main ()
+| {
+| 
+|     printf ("hello world\n");
+| 
+|   ;
+|   return 0;
+| }
+configure:5761: result: not found 
+configure:5768: checking whether to enable pch feature
+configure:5786: result: no
+configure:5791: checking for GNU make
+configure:5800: result: make
+configure:5808: checking the GNU make version
+configure:5813: result: make 3.81
+configure:5822: checking for dmake
+configure:5888: no system or user-provided dmake found
+configure:5895: result: dmake will be downloaded and compiled in bootstrap
+configure:5949: checking for GNU or compatible BSD tar
+configure:5958: result: gtar
+configure:6039: checking for --hash-style=both linker support 
+configure:6063: gcc -o conftest -g -O2   -Wl,--hash-style=both conftest.c  >&5
+configure:6069: $? = 0
+configure:6073: test -z 
+			 || test ! -s conftest.err
+configure:6076: $? = 0
+configure:6079: test -s conftest
+configure:6082: $? = 0
+configure:6094: result: found 
+configure:6171: checking for perl
+configure:6189: found /usr/local/bin/perl
+configure:6201: result: /usr/local/bin/perl
+configure:6223: checking the Perl version
+configure:6232: result: checked (perl 5)
+configure:6241: checking for required Perl modules
+configure:6244: result: all modules found
+configure:6685: checking how to run the C preprocessor
+configure:6720: gcc -E  conftest.c
+configure:6726: $? = 0
+configure:6758: gcc -E  conftest.c
+conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
+configure:6764: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:6803: result: gcc -E
+configure:6827: gcc -E  conftest.c
+configure:6833: $? = 0
+configure:6865: gcc -E  conftest.c
+conftest.c:9:28: error: ac_nonexistent.h: No such file or directory
+configure:6871: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:6915: checking for ANSI C header files
+configure:6940: gcc -c -g -O2  conftest.c >&5
+configure:6946: $? = 0
+configure:6950: test -z 
+			 || test ! -s conftest.err
+configure:6953: $? = 0
+configure:6956: test -s conftest.o
+configure:6959: $? = 0
+configure:7048: gcc -o conftest -g -O2   conftest.c  >&5
+conftest.c: In function 'main':
+conftest.c:26: warning: incompatible implicit declaration of built-in function 'exit'
+configure:7051: $? = 0
+configure:7053: ./conftest
+configure:7056: $? = 0
+configure:7071: result: yes
+configure:7136: checking for g++
+configure:7152: found /usr/lib/ccache/g++
+configure:7162: result: g++
+configure:7178: checking for C++ compiler version
+configure:7181: g++ --version </dev/null >&5
+g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-55)
+Copyright (C) 2006 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:7184: $? = 0
+configure:7186: g++ -v </dev/null >&5
+Using built-in specs.
+Target: i386-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
+Thread model: posix
+gcc version 4.1.2 20080704 (Red Hat 4.1.2-55)
+configure:7189: $? = 0
+configure:7191: g++ -V </dev/null >&5
+g++: '-V' option must have argument
+configure:7194: $? = 1
+configure:7197: checking whether we are using the GNU C++ compiler
+configure:7221: g++ -c   conftest.cc >&5
+configure:7227: $? = 0
+configure:7231: test -z 
+			 || test ! -s conftest.err
+configure:7234: $? = 0
+configure:7237: test -s conftest.o
+configure:7240: $? = 0
+configure:7253: result: yes
+configure:7259: checking whether g++ accepts -g
+configure:7280: g++ -c -g  conftest.cc >&5
+configure:7286: $? = 0
+configure:7290: test -z 
+			 || test ! -s conftest.err
+configure:7293: $? = 0
+configure:7296: test -s conftest.o
+configure:7299: $? = 0
+configure:7310: result: yes
+configure:7352: g++ -c -g -O2  conftest.cc >&5
+configure:7358: $? = 0
+configure:7362: test -z 
+			 || test ! -s conftest.err
+configure:7365: $? = 0
+configure:7368: test -s conftest.o
+configure:7371: $? = 0
+configure:7397: g++ -c -g -O2  conftest.cc >&5
+conftest.cc: In function 'int main()':
+conftest.cc:14: error: 'exit' was not declared in this scope
+configure:7403: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| 
+| int
+| main ()
+| {
+| exit (42);
+|   ;
+|   return 0;
+| }
+configure:7352: g++ -c -g -O2  conftest.cc >&5
+configure:7358: $? = 0
+configure:7362: test -z 
+			 || test ! -s conftest.err
+configure:7365: $? = 0
+configure:7368: test -s conftest.o
+configure:7371: $? = 0
+configure:7397: g++ -c -g -O2  conftest.cc >&5
+configure:7403: $? = 0
+configure:7407: test -z 
+			 || test ! -s conftest.err
+configure:7410: $? = 0
+configure:7413: test -s conftest.o
+configure:7416: $? = 0
+configure:7444: checking how to run the C++ preprocessor
+configure:7475: g++ -E  conftest.cc
+configure:7481: $? = 0
+configure:7513: g++ -E  conftest.cc
+conftest.cc:13:28: error: ac_nonexistent.h: No such file or directory
+configure:7519: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:7558: result: g++ -E
+configure:7582: g++ -E  conftest.cc
+configure:7588: $? = 0
+configure:7620: g++ -E  conftest.cc
+conftest.cc:13:28: error: ac_nonexistent.h: No such file or directory
+configure:7626: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:7678: checking how to run the C preprocessor
+configure:7796: result: gcc -E
+configure:7820: gcc -E  conftest.c
+configure:7826: $? = 0
+configure:7858: gcc -E  conftest.c
+conftest.c:13:28: error: ac_nonexistent.h: No such file or directory
+configure:7864: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:7924: checking for sys/types.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for sys/stat.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for stdlib.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for string.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for memory.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for strings.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for inttypes.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for stdint.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7924: checking for unistd.h
+configure:7940: gcc -c -g -O2  conftest.c >&5
+configure:7946: $? = 0
+configure:7950: test -z 
+			 || test ! -s conftest.err
+configure:7953: $? = 0
+configure:7956: test -s conftest.o
+configure:7959: $? = 0
+configure:7970: result: yes
+configure:7982: checking for long
+configure:8006: gcc -c -g -O2  conftest.c >&5
+configure:8012: $? = 0
+configure:8016: test -z 
+			 || test ! -s conftest.err
+configure:8019: $? = 0
+configure:8022: test -s conftest.o
+configure:8025: $? = 0
+configure:8036: result: yes
+configure:8039: checking size of long
+configure:8358: gcc -o conftest -g -O2   conftest.c  >&5
+configure:8361: $? = 0
+configure:8363: ./conftest
+configure:8366: $? = 0
+configure:8389: result: 4
+configure:8398: checking whether byte ordering is bigendian
+configure:8425: gcc -c -g -O2  conftest.c >&5
+configure:8431: $? = 0
+configure:8435: test -z 
+			 || test ! -s conftest.err
+configure:8438: $? = 0
+configure:8441: test -s conftest.o
+configure:8444: $? = 0
+configure:8468: gcc -c -g -O2  conftest.c >&5
+conftest.c: In function 'main':
+conftest.c:30: error: 'not' undeclared (first use in this function)
+conftest.c:30: error: (Each undeclared identifier is reported only once
+conftest.c:30: error: for each function it appears in.)
+conftest.c:30: error: expected ';' before 'big'
+configure:8474: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| #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:8609: result: no
+configure:8638: checking for special C compiler options needed for large files
+configure:8737: result: no
+configure:8743: checking for _FILE_OFFSET_BITS value needed for large files
+configure:8774: gcc -c -g -O2  conftest.c >&5
+conftest.c:29: warning: left shift count >= width of type
+conftest.c:29: warning: left shift count >= width of type
+conftest.c:31: error: size of array 'off_t_is_large' is negative
+configure:8780: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| #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:8827: gcc -c -g -O2  conftest.c >&5
+configure:8833: $? = 0
+configure:8837: test -z 
+			 || test ! -s conftest.err
+configure:8840: $? = 0
+configure:8843: test -s conftest.o
+configure:8846: $? = 0
+configure:8858: result: 64
+configure:8868: checking for _LARGE_FILES value needed for large files
+configure:8899: gcc -c -g -O2  conftest.c >&5
+configure:8905: $? = 0
+configure:8909: test -z 
+			 || test ! -s conftest.err
+configure:8912: $? = 0
+configure:8915: test -s conftest.o
+configure:8918: $? = 0
+configure:8983: result: no
+configure:9460: checking cups/cups.h usability
+configure:9472: gcc -c -g -O2  conftest.c >&5
+configure:9478: $? = 0
+configure:9482: test -z 
+			 || test ! -s conftest.err
+configure:9485: $? = 0
+configure:9488: test -s conftest.o
+configure:9491: $? = 0
+configure:9501: result: yes
+configure:9505: checking cups/cups.h presence
+configure:9515: gcc -E  conftest.c
+configure:9521: $? = 0
+configure:9541: result: yes
+configure:9576: checking for cups/cups.h
+configure:9583: result: yes
+configure:9599: checking whether to enable pam support
+configure:9602: result: yes
+configure:9615: checking security/pam_appl.h usability
+configure:9627: gcc -c -g -O2  conftest.c >&5
+configure:9633: $? = 0
+configure:9637: test -z 
+			 || test ! -s conftest.err
+configure:9640: $? = 0
+configure:9643: test -s conftest.o
+configure:9646: $? = 0
+configure:9656: result: yes
+configure:9660: checking security/pam_appl.h presence
+configure:9670: gcc -E  conftest.c
+configure:9676: $? = 0
+configure:9696: result: yes
+configure:9731: checking for security/pam_appl.h
+configure:9738: result: yes
+configure:9751: checking whether to link to libpam
+configure:9836: result: no, dynamically open it
+configure:9853: checking whether to link to libcrypt
+configure:9856: result: yes
+configure:9860: checking for crypt in -lcrypt
+configure:9890: gcc -o conftest -g -O2   conftest.c -lcrypt   >&5
+configure:9896: $? = 0
+configure:9900: test -z 
+			 || test ! -s conftest.err
+configure:9903: $? = 0
+configure:9906: test -s conftest
+configure:9909: $? = 0
+configure:9922: result: yes
+configure:10052: checking for C++ compiler version
+configure:10055: g++ --version </dev/null >&5
+g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-55)
+Copyright (C) 2006 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:10058: $? = 0
+configure:10060: g++ -v </dev/null >&5
+Using built-in specs.
+Target: i386-redhat-linux
+Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux
+Thread model: posix
+gcc version 4.1.2 20080704 (Red Hat 4.1.2-55)
+configure:10063: $? = 0
+configure:10065: g++ -V </dev/null >&5
+g++: '-V' option must have argument
+configure:10068: $? = 1
+configure:10071: checking whether we are using the GNU C++ compiler
+configure:10127: result: yes
+configure:10133: checking whether g++ accepts -g
+configure:10184: result: yes
+configure:10226: g++ -c -g -O2  conftest.cc >&5
+configure:10232: $? = 0
+configure:10236: test -z 
+			 || test ! -s conftest.err
+configure:10239: $? = 0
+configure:10242: test -s conftest.o
+configure:10245: $? = 0
+configure:10271: g++ -c -g -O2  conftest.cc >&5
+configure:10277: $? = 0
+configure:10281: test -z 
+			 || test ! -s conftest.err
+configure:10284: $? = 0
+configure:10287: test -s conftest.o
+configure:10290: $? = 0
+configure:10316: checking the GNU C++ compiler version
+configure:10322: result: checked (g++ 4.1.2)
+configure:10395: checking for g++ include path
+configure:10417: result: /usr/include/c++/4.1.2
+configure:10561: checking exception type
+configure:10624: result: 
+configure:10732: checking what the default STL should be
+configure:10746: checking whether gcc supports -fvisibility=hidden
+configure:10766: gcc -o conftest -g -O2 -fvisibility=hidden   conftest.c -lcrypt  >&5
+configure:10772: $? = 0
+configure:10776: test -z 
+			 || test ! -s conftest.err
+configure:10779: $? = 0
+configure:10782: test -s conftest
+configure:10785: $? = 0
+configure:10797: result: yes
+configure:10808: checking whether we are allowed and able to use --ccache-skip
+configure:10811: result: only used on Mac currently, skipping
+configure:11120: checking which memory allocator to use
+configure:11518: result: internal
+configure:11524: checking whether to add custom build version
+configure:11528: result: yes, 2021-08-23 06:58 - Linux i686 [Apache OpenOffice Test Development Build]
+configure:11537: checking whether to build with Java support
+configure:11540: result: yes
+configure:11576: checking for java
+configure:11594: found /usr/bin/java
+configure:11606: result: /usr/bin/java
+configure:11636: checking the installed JDK
+configure:11729: result: checked (JDK 1.6.0_41)
+configure:11763: checking for javac
+configure:11781: found /usr/bin/javac
+configure:11793: result: /usr/bin/javac
+configure:11849: checking for javadoc
+configure:11867: found /usr/bin/javadoc
+configure:11879: result: /usr/bin/javadoc
+configure:12069: checking for jawt lib name
+configure:12599: result: -ljawt
+configure:12605: checking whether to enable gcj aot compilation
+configure:12669: result: no
+configure:12685: checking whether to enable EPM for packing
+configure:12688: result: yes
+configure:12696: checking for epm
+configure:12714: found /usr/local/bin/epm
+configure:12727: result: /usr/local/bin/epm
+configure:12740: result: epm will be downloaded and compiled in bootstrap
+configure:12781: checking which package format to use
+configure:12870: result: rpm deb
+configure:12873: checking for rpm
+configure:12894: result: /usr/bin/rpmbuild
+configure:12905: checking for dpkg
+configure:12923: found /usr/bin/dpkg
+configure:12936: result: /usr/bin/dpkg
+configure:12950: checking for fakeroot
+configure:12968: found /usr/bin/fakeroot
+configure:12981: result: /usr/bin/fakeroot
+configure:13093: checking for gperf
+configure:13111: found /usr/bin/gperf
+configure:13123: result: /usr/bin/gperf
+configure:13133: checking for gperf
+configure:13163: result: /usr/bin/gperf
+configure:13184: checking gperf version
+configure:13187: result: OK
+configure:13197: checking whether to build the stax
+configure:13205: result: yes
+configure:13210: checking whether to build the ODK
+configure:13213: result: yes
+configure:13216: checking for external/unowinreg/unowinreg.dll
+configure:13224: result: found
+configure:13764: checking whether to provide libstdc++/libgcc_s in the installset
+configure:13768: result: no
+configure:13781: checking which zlib to use
+configure:14007: result: internal
+configure:14014: checking which jpeg to use
+configure:14239: result: internal
+configure:14246: checking which expat to use
+configure:14477: result: internal
+configure:14484: checking which libwpd to use
+configure:14603: result: no
+configure:14612: checking which cppunit to use
+configure:14698: WARNING: not using cppunit
+configure:14708: checking whether freetype is available
+configure:14712: checking for FREETYPE
+configure:14719: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:14722: $? = 0
+configure:14736: $PKG_CONFIG --exists --print-errors "freetype2 >= 2.0 "
+configure:14739: $? = 0
+configure:14817: result: yes
+configure:14831: checking for FT_GlyphSlot_Embolden in -lfreetype
+configure:14861: gcc -o conftest -g -O2  -I/usr/include/freetype2    -lfreetype   conftest.c -lfreetype  -lcrypt  >&5
+configure:14867: $? = 0
+configure:14871: test -z 
+			 || test ! -s conftest.err
+configure:14874: $? = 0
+configure:14877: test -s conftest
+configure:14880: $? = 0
+configure:14893: result: yes
+configure:14928: checking which libxslt to use
+configure:15100: result: internal
+configure:15110: checking which libxml to use
+configure:15237: result: internal
+configure:15291: checking which python to use
+configure:15722: result: internal
+configure:15732: checking for bzip2
+configure:15750: found /usr/bin/bzip2
+configure:15762: result: /usr/bin/bzip2
+configure:15782: checking which lucene to use
+configure:16013: result: internal
+configure:16022: checking whether to build the MySQL Connector extension
+configure:16040: result: no
+configure:16466: checking which hsqldb to use
+configure:16534: result: internal
+configure:16543: checking which beanshell to use
+configure:16580: result: internal
+configure:16596: checking which saxon to use
+configure:16812: result: internal
+configure:16828: checking whether to enable support for JavaScript
+configure:16832: result: yes
+configure:16846: checking which libapr to use
+configure:16964: result: internal
+configure:16977: checking which libapr-util to use
+configure:17095: result: internal
+configure:17108: checking which libserf to use
+configure:17227: result: internal
+configure:17241: checking whether to enable support for CoinMP
+configure:17245: result: yes
+configure:17249: checking which coinmp to use
+configure:17516: result: internal
+configure:17535: checking which curl to use
+configure:17604: result: internal
+configure:17613: checking which mdds to use
+configure:17779: result: internal
+configure:17786: checking which boost to use
+configure:18305: result: internal
+configure:18312: checking which vigra to use
+configure:18478: result: internal
+configure:18485: checking which odbc headers to use
+configure:18640: result: internal
+configure:18647: checking whether to build XML Security support
+configure:18653: result: yes
+configure:18657: checking whether to build LDAP configuration backend
+configure:18997: checking whether to build the internal NSS module
+configure:19002: result: yes
+configure:19053: checking which sane header to use
+configure:19207: result: internal
+configure:19214: checking which icu to use
+configure:19468: result: internal
+configure:19483: checking whether to enable graphite support
+configure:19486: result: yes
+configure:19489: checking which graphite to use
+configure:19608: result: internal
+configure:19657: checking for X
+configure:19762: gcc -E  conftest.c
+configure:19768: $? = 0
+configure:19818: gcc -o conftest -g -O2   conftest.c -lX11 -lcrypt  >&5
+configure:19824: $? = 0
+configure:19828: test -z 
+			 || test ! -s conftest.err
+configure:19831: $? = 0
+configure:19834: test -s conftest
+configure:19837: $? = 0
+configure:19887: result: libraries , headers 
+configure:20059: gcc -o conftest -g -O2   conftest.c -lcrypt   -lX11 >&5
+configure:20065: $? = 0
+configure:20069: test -z 
+			 || test ! -s conftest.err
+configure:20072: $? = 0
+configure:20075: test -s conftest
+configure:20078: $? = 0
+configure:20236: checking for gethostbyname
+configure:20293: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:20299: $? = 0
+configure:20303: test -z 
+			 || test ! -s conftest.err
+configure:20306: $? = 0
+configure:20309: test -s conftest
+configure:20312: $? = 0
+configure:20324: result: yes
+configure:20475: checking for connect
+configure:20532: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:20538: $? = 0
+configure:20542: test -z 
+			 || test ! -s conftest.err
+configure:20545: $? = 0
+configure:20548: test -s conftest
+configure:20551: $? = 0
+configure:20563: result: yes
+configure:20638: checking for remove
+configure:20695: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:20701: $? = 0
+configure:20705: test -z 
+			 || test ! -s conftest.err
+configure:20708: $? = 0
+configure:20711: test -s conftest
+configure:20714: $? = 0
+configure:20726: result: yes
+configure:20801: checking for shmat
+configure:20858: gcc -o conftest -g -O2   conftest.c -lcrypt  >&5
+configure:20864: $? = 0
+configure:20868: test -z 
+			 || test ! -s conftest.err
+configure:20871: $? = 0
+configure:20874: test -s conftest
+configure:20877: $? = 0
+configure:20889: result: yes
+configure:20973: checking for IceConnectionNumber in -lICE
+configure:21003: gcc -o conftest -g -O2   conftest.c -lICE  -lcrypt  >&5
+configure:21009: $? = 0
+configure:21013: test -z 
+			 || test ! -s conftest.err
+configure:21016: $? = 0
+configure:21019: test -s conftest
+configure:21022: $? = 0
+configure:21035: result: yes
+configure:21065: checking for XOpenDisplay in -lX11
+configure:21095: gcc -o conftest      conftest.c -lX11  -lcrypt  >&5
+configure:21101: $? = 0
+configure:21105: test -z 
+			 || test ! -s conftest.err
+configure:21108: $? = 0
+configure:21111: test -s conftest
+configure:21114: $? = 0
+configure:21127: result: yes
+configure:21137: checking for XauDisposeAuth in -lXau
+configure:21167: gcc -o conftest      conftest.c -lXau  -lcrypt  >&5
+configure:21173: $? = 0
+configure:21177: test -z 
+			 || test ! -s conftest.err
+configure:21180: $? = 0
+configure:21183: test -s conftest
+configure:21186: $? = 0
+configure:21199: result: yes
+configure:21243: checking fontconfig/fontconfig.h usability
+configure:21255: gcc -c    conftest.c >&5
+configure:21261: $? = 0
+configure:21265: test -z 
+			 || test ! -s conftest.err
+configure:21268: $? = 0
+configure:21271: test -s conftest.o
+configure:21274: $? = 0
+configure:21284: result: yes
+configure:21288: checking fontconfig/fontconfig.h presence
+configure:21298: gcc -E   conftest.c
+configure:21304: $? = 0
+configure:21324: result: yes
+configure:21359: checking for fontconfig/fontconfig.h
+configure:21366: result: yes
+configure:21379: checking whether fontconfig is >= 2.2.0
+configure:21404: gcc -o conftest      conftest.c -lcrypt  >&5
+configure:21407: $? = 0
+configure:21409: ./conftest
+configure:21412: $? = 0
+configure:21414: result: yes
+configure:21430: checking whether to link to Xrender
+configure:21438: result: no, dynamically open it
+configure:21442: checking which Xrender headers to use
+configure:21596: result: internal
+configure:21684: checking whether to enable RandR support
+configure:21695: checking for XRANDR
+configure:21702: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+Requested 'xrandr >= 1.2' but version of Xrandr is 1.1.1
+configure:21705: $? = 1
+configure:21719: $PKG_CONFIG --exists --print-errors "xrandr >= 1.2"
+Requested 'xrandr >= 1.2' but version of Xrandr is 1.1.1
+configure:21722: $? = 1
+configure:21736: result: no
+Requested 'xrandr >= 1.2' but version of Xrandr is 1.1.1
+configure:21775: checking X11/extensions/Xrandr.h usability
+configure:21787: gcc -c    conftest.c >&5
+In file included from conftest.c:60:
+/usr/include/X11/extensions/Xrandr.h:49: error: expected specifier-qualifier-list before 'Bool'
+/usr/include/X11/extensions/Xrandr.h:68: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRQueryExtension'
+/usr/include/X11/extensions/Xrandr.h:69: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRQueryVersion'
+/usr/include/X11/extensions/Xrandr.h:73: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:85: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRSetScreenConfig'
+/usr/include/X11/extensions/Xrandr.h:93: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRSetScreenConfigAndRate'
+/usr/include/X11/extensions/Xrandr.h:104: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRConfigTimes'
+/usr/include/X11/extensions/Xrandr.h:115: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:126: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:127: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:128: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:136: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:137: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:138: error: expected ')' before '*' token
+/usr/include/X11/extensions/Xrandr.h:139: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'XRRTimes'
+/usr/include/X11/extensions/Xrandr.h:147: error: expected ')' before '*' token
+configure:21793: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define STDC_HEADERS 1
+| #ifdef __cplusplus
+| extern "C" void std::exit (int) throw (); using std::exit;
+| #endif
+| #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
+| /* end confdefs.h.  */
+| #include <stdio.h>
+| #if HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #if HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #if STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # if HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #if HAVE_STRING_H
+| # if !STDC_HEADERS && HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #if HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #if HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #else
+| # if HAVE_STDINT_H
+| #  include <stdint.h>
+| # endif
+| #endif
+| #if HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| #include <X11/extensions/Xrandr.h>
+configure:21816: result: no
+configure:21820: checking X11/extensions/Xrandr.h presence
+configure:21830: gcc -E   conftest.c
+configure:21836: $? = 0
+configure:21856: result: yes
+configure:21869: WARNING: X11/extensions/Xrandr.h: present but cannot be compiled
+configure:21871: WARNING: X11/extensions/Xrandr.h:     check for missing prerequisite headers?
+configure:21873: WARNING: X11/extensions/Xrandr.h: see the Autoconf documentation
+configure:21875: WARNING: X11/extensions/Xrandr.h:     section "Present But Cannot Be Compiled"
+configure:21877: WARNING: X11/extensions/Xrandr.h: proceeding with the preprocessor's result
+configure:21879: WARNING: X11/extensions/Xrandr.h: in the future, the compiler will take precedence
+configure:21891: checking for X11/extensions/Xrandr.h
+configure:21898: result: yes
+configure:21913: checking for XRRQueryExtension in -lXrandr
+configure:21943: gcc -o conftest      conftest.c -lXrandr  -lcrypt  >&5
+configure:21949: $? = 0
+configure:21953: test -z 
+			 || test ! -s conftest.err
+configure:21956: $? = 0
+configure:21959: test -s conftest
+configure:21962: $? = 0
+configure:21975: result: yes
+configure:21992: result: enabling RandR support
+configure:22006: checking which libnss to use
+configure:22124: result: internal
+configure:22136: checking which libssl to use
+configure:22262: result: internal
+configure:22271: checking which redland library to use
+configure:22390: result: internal
+configure:22399: checking whether to build the Spell Checking component
+configure:22404: checking which libhunspell to use
+configure:22860: result: internal
+configure:22875: checking whether to build the Hyphenator component
+configure:22880: checking which libhyphen to use
+configure:23365: result: internal
+configure:23392: checking which mythes to use
+configure:23772: result: internal
+configure:23782: checking which libtextcat to use
+configure:24013: result: internal
+configure:24020: checking which libtextcat data directory to use
+configure:24031: result: internal
+configure:24038: checking whether libc is >= 2.1.1
+configure:24041: checking for gnu_get_libc_version in -lc
+configure:24071: gcc -o conftest      conftest.c -lc  -lXrandr -lcrypt  >&5
+configure:24077: $? = 0
+configure:24081: test -z 
+			 || test ! -s conftest.err
+configure:24084: $? = 0
+configure:24087: test -s conftest
+configure:24090: $? = 0
+configure:24103: result: yes
+configure:24111: result: yes
+configure:24125: checking for getopt
+configure:24182: gcc -o conftest      conftest.c -lXrandr -lcrypt  >&5
+configure:24188: $? = 0
+configure:24192: test -z 
+			 || test ! -s conftest.err
+configure:24195: $? = 0
+configure:24198: test -s conftest
+configure:24201: $? = 0
+configure:24213: result: yes
+configure:24229: checking for readdir_r
+configure:24286: gcc -o conftest      conftest.c -lXrandr -lcrypt  >&5
+configure:24292: $? = 0
+configure:24296: test -z 
+			 || test ! -s conftest.err
+configure:24299: $? = 0
+configure:24302: test -s conftest
+configure:24305: $? = 0
+configure:24317: result: yes
+configure:24708: checking for bison
+configure:24726: found /usr/bin/bison
+configure:24738: result: /usr/bin/bison
+configure:24750: checking the bison version
+configure:24761: result: checked (/usr/bin/bison 2.3)
+configure:24772: checking for flex
+configure:24790: found /usr/bin/flex
+configure:24802: result: /usr/bin/flex
+configure:24816: checking for patch
+configure:24834: found /usr/bin/patch
+configure:24846: result: /usr/bin/patch
+configure:24894: checking for gnucp
+configure:24927: result: no
+configure:24894: checking for cp
+configure:24912: found /bin/cp
+configure:24924: result: /bin/cp
+configure:24950: checking whether /bin/cp is GNU cp from coreutils with preserve= support
+configure:24953: result: yes
+configure:25167: checking for zip
+configure:25185: found /usr/local/bin/zip
+configure:25197: result: /usr/local/bin/zip
+configure:25206: checking for unzip
+configure:25224: found /usr/bin/unzip
+configure:25236: result: /usr/bin/unzip
+configure:25366: checking which VCLplugs shall be built
+configure:25393: result: gtk
+configure:25399: checking whether to enable GConf support
+configure:25403: result: yes
+configure:25407: checking for GCONF
+configure:25414: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:25417: $? = 0
+configure:25431: $PKG_CONFIG --exists --print-errors "gconf-2.0 "
+configure:25434: $? = 0
+configure:25512: result: yes
+configure:25524: checking whether to enable GNOME VFS support
+configure:25528: result: yes
+configure:25532: checking for GNOMEVFS
+configure:25539: $PKG_CONFIG --exists --print-errors "gnome-vfs-2.0 >= 2.6.0 "
+configure:25542: $? = 0
+configure:25556: $PKG_CONFIG --exists --print-errors "gnome-vfs-2.0 >= 2.6.0 "
+configure:25559: $? = 0
+configure:25637: result: yes
+configure:25770: checking for GTK
+configure:25777: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:25780: $? = 0
+configure:25794: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >= 2.2 "
+configure:25797: $? = 0
+configure:25839: result: yes
+configure:25845: checking for GTHREAD
+configure:25852: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:25855: $? = 0
+configure:25869: $PKG_CONFIG --exists --print-errors "gthread-2.0"
+configure:25872: $? = 0
+configure:25914: result: yes
+configure:25923: checking for GTK_2_10
+configure:25930: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:25933: $? = 0
+configure:25947: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.10.0"
+configure:25950: $? = 0
+configure:25988: result: yes
+configure:25995: checking whether to enable DBUS support
+configure:25999: result: yes
+configure:26003: checking for DBUS
+configure:26010: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:26013: $? = 0
+configure:26027: $PKG_CONFIG --exists --print-errors "dbus-glib-1 >= 0.70 "
+configure:26030: $? = 0
+configure:26108: result: yes
+configure:26117: checking whether to enable GIO support
+configure:26240: result: no
+configure:26261: checking whether to build the GStreamer media backend
+configure:26266: checking for GSTREAMER
+configure:26273: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-0.10 gstreamer-interfaces-0.10 "
+configure:26276: $? = 0
+configure:26290: $PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.4 gthread-2.0 gstreamer-0.10 gstreamer-interfaces-0.10 "
+configure:26293: $? = 0
+configure:26335: result: yes
+configure:26340: result: yes
+configure:26376: checking whether to use cairo
+configure:26569: result: no
+configure:26587: checking whether to build the OpenGL Transitions component
+configure:26592: result: yes
+configure:26604: checking GL/gl.h usability
+configure:26616: gcc -c    conftest.c >&5
+configure:26622: $? = 0
+configure:26626: test -z 
+			 || test ! -s conftest.err
+configure:26629: $? = 0
+configure:26632: test -s conftest.o
+configure:26635: $? = 0
+configure:26645: result: yes
+configure:26649: checking GL/gl.h presence
+configure:26659: gcc -E   conftest.c
+configure:26665: $? = 0
+configure:26685: result: yes
+configure:26720: checking for GL/gl.h
+configure:26727: result: yes
+configure:26741: checking for main in -lGL
+configure:26765: gcc -o conftest      conftest.c -lGL  -lXrandr -lcrypt  >&5
+configure:26771: $? = 0
+configure:26775: test -z 
+			 || test ! -s conftest.err
+configure:26778: $? = 0
+configure:26781: test -s conftest
+configure:26784: $? = 0
+configure:26797: result: yes
+configure:26813: checking for main in -lGLU
+configure:26837: gcc -o conftest      conftest.c -lGLU  -lGL -lXrandr -lcrypt  >&5
+configure:26843: $? = 0
+configure:26847: test -z 
+			 || test ! -s conftest.err
+configure:26850: $? = 0
+configure:26853: test -s conftest
+configure:26856: $? = 0
+configure:26869: result: yes
+configure:26893: checking whether to build the PDF Import extension
+configure:27025: result: no
+configure:27034: checking whether to build the Wiki Publisher extension
+configure:27037: result: yes
+configure:27039: checking for swext module
+configure:27042: result: OK
+configure:27059: checking which Servlet API Jar to use
+configure:27095: result: internal
+configure:27104: checking whether to build the Report Builder extension
+configure:27967: result: no
+configure:27988: checking which Apache commons-* libs to use
+configure:28321: result: internal
+configure:28706: checking whether to enable the lockdown pieces
+configure:28714: result: no
+configure:28719: checking whether to enable evolution 2 support
+configure:28838: result: no
+configure:28845: checking whether to enable KDE address book support
+configure:28916: result: no
+configure:28922: checking whether to include MathMLDTD
+configure:28930: result: yes
+configure:28941: checking whether to include category B fonts
+configure:28944: result: yes
+configure:28956: checking whether to include category A fonts
+configure:28959: result: yes
+configure:28971: checking whether any fonts are included
+configure:28976: result: yes
+configure:28987: checking whether to include PPDs
+configure:28990: result: yes
+configure:29000: checking whether to include AFMs
+configure:29003: result: yes
+configure:29016: checking whether and how to use Xinerama
+configure:29052: result: yes, with dynamic linking
+configure:29064: checking X11/extensions/Xinerama.h usability
+configure:29076: gcc -c    conftest.c >&5
+configure:29082: $? = 0
+configure:29086: test -z 
+			 || test ! -s conftest.err
+configure:29089: $? = 0
+configure:29092: test -s conftest.o
+configure:29095: $? = 0
+configure:29105: result: yes
+configure:29109: checking X11/extensions/Xinerama.h presence
+configure:29119: gcc -E   conftest.c
+configure:29125: $? = 0
+configure:29145: result: yes
+configure:29180: checking for X11/extensions/Xinerama.h
+configure:29187: result: yes
+configure:29208: checking for XineramaIsActive in -lXinerama
+configure:29238: gcc -o conftest      conftest.c -lXinerama -L/usr/lib -lXext -ldl -lGLU -lGL -lXrandr -lcrypt  >&5
+configure:29244: $? = 0
+configure:29248: test -z 
+			 || test ! -s conftest.err
+configure:29251: $? = 0
+configure:29254: test -s conftest
+configure:29257: $? = 0
+configure:29270: result: yes
+configure:29324: checking whether to build own version of libpng
+configure:29340: result: no
+configure:29347: checking whether to build own version of libjpeg
+configure:29367: result: no
+configure:29376: checking whether to trigger rat scan
+configure:29379: result: no
+configure:29563: checking for jakarta-ant
+configure:29597: result: no
+configure:29563: checking for ant
+configure:29582: found /home/jim/ant/bin/ant
+configure:29594: result: /home/jim/ant/bin/ant
+configure:29630: checking if /home/jim/ant/bin/ant works
+configure:29655: /home/jim/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:29658: $? = 0
+configure:29661: result: Ant works
+configure:29689: checking Ant lib directory
+configure:29718: result: Ant lib directory found.
+configure:29731: checking whether ant is >= 1.7.0
+configure: ant_version 1.9.7 
+configure: ant_version_major 1 
+configure: ant_version_minor 9 
+configure:29743: result: yes, 1.9.7
+configure:29752: checking whether ant supports mapper type="regexp"
+configure:29785: /home/jim/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:29788: $? = 0
+configure:29791: result: yes
+configure:29845: checking which languages to be built
+configure:29852: result: ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW
+configure:29859: checking which languages have poor help localizations
+configure:29863: result: none
+configure:29871: checking which dictionaries to include
+configure:29875: result: ALL
+configure:29884: checking for additional 'intro' bitmaps
+configure:29889: result: none
+configure:29907: checking for additional 'about' bitmaps
+configure:29912: result: none
+configure:29931: checking for vendor
+configure:29934: result: not set
+configure:29944: checking for UNIX wrapper name
+configure:29947: result: not set
+configure:29956: checking whether to statically link to Gtk
+configure:29964: result: no
+configure:29969: checking whether to use layout dialogs
+configure:29977: result: no
+configure:29985: checking build verbosity
+configure:29990: result: high
+configure:30004: checking whether to enable dependency tracking
+configure:30011: result: yes
+configure:30030: checking solver path
+configure:30034: result: default
+configure:30053: writing config.status
+configure:30181: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by config.status, which was
+generated by GNU Autoconf 2.59.  Invocation command line was
+
+  CONFIG_FILES    = 
+  CONFIG_HEADERS  = 
+  CONFIG_LINKS    = 
+  CONFIG_COMMANDS = 
+  $ ./config.status 
+
+on aoo-builder32-centos5.localdomain
+
+config.status:1032: creating set_soenv
+config.status:1032: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=i686-pc-linux-gnu
+ac_cv_build_alias=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_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_CPPUNIT_CFLAGS_set=
+ac_cv_env_CPPUNIT_CFLAGS_value=
+ac_cv_env_CPPUNIT_LIBS_set=
+ac_cv_env_CPPUNIT_LIBS_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_LIBWPD_CFLAGS_set=
+ac_cv_env_LIBWPD_CFLAGS_value=
+ac_cv_env_LIBWPD_LIBS_set=
+ac_cv_env_LIBWPD_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_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_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_exeext=
+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_X11_extensions_Xrandr_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_host_alias=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_Xrandr_XRRQueryExtension=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=/home/jim/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_EPM=/usr/local/bin/epm
+ac_cv_path_FAKEROOT=/usr/bin/fakeroot
+ac_cv_path_FLEX=/usr/bin/flex
+ac_cv_path_GNUCP=/bin/cp
+ac_cv_path_GPERF=/usr/bin/gperf
+ac_cv_path_JAVACOMPILER=/usr/bin/javac
+ac_cv_path_JAVADOC=/usr/bin/javadoc
+ac_cv_path_JAVAINTERPRETER=/usr/bin/java
+ac_cv_path_PATCH=/usr/bin/patch
+ac_cv_path_PERL=/usr/local/bin/perl
+ac_cv_path_SED=/bin/sed
+ac_cv_path_SHELLPATH=/bin/bash
+ac_cv_path_UNZIP=/usr/bin/unzip
+ac_cv_path_ZIP=/usr/local/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_g=yes
+ac_cv_prog_cc_stdc=
+ac_cv_prog_cxx_g=yes
+ac_cv_prog_egrep='grep -E'
+ac_cv_sizeof_long=4
+ac_cv_sys_file_offset_bits=64
+ac_cv_sys_large_files=no
+ac_cv_sys_largefile_CC=no
+ac_cv_target=i686-pc-linux-gnu
+ac_cv_target_alias=i686-pc-linux-gnu
+ac_cv_type_long=yes
+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='-DORBIT2=1 -pthread -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_GCONF_LIBS='-pthread -L/lib -lgconf-2 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0  '
+pkg_cv_GNOMEVFS_CFLAGS='-pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+pkg_cv_GNOMEVFS_LIBS='-pthread -L/lib -lgnomevfs-2 -lgconf-2 -lgobject-2.0 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2  '
+pkg_cv_GSTREAMER_LIBS='-pthread -L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgstinterfaces-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lxml2 -lz -lm -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 -L/lib -lgthread-2.0 -lglib-2.0  '
+pkg_cv_GTK_2_10_CFLAGS='-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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12  '
+pkg_cv_GTK_2_10_LIBS='-L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  '
+pkg_cv_GTK_CFLAGS='-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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12  '
+pkg_cv_GTK_LIBS='-L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgdk_pixbuf_xlib-2.0 -lgdk_pixbuf-2.0 -lm -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  '
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+ABOUT_BITMAPS=''
+ADDITIONAL_REPOSITORIES='../ext_libraries ../extras'
+ALLOC=''
+ANT='/home/jim/ant/bin/ant'
+ANT_HOME='/home/jim/ant'
+ANT_LIB='/home/jim/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='YES'
+BUILD_PIXMAN=''
+BUILD_STAX='YES'
+BUILD_TYPE='OOo CRASHREP EPM 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='2021-08-23 06:58 - Linux i686 [Apache OpenOffice Test Development Build]'
+BUILD_X64=''
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2='/usr/bin/bzip2'
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='gcc'
+CCACHE=''
+CC_PATH='/usr/lib/ccache/'
+CFLAGS=''
+COINMP_CFLAGS=''
+COINMP_LIBS=''
+COMEX=''
+COMMONS_CODEC_JAR=''
+COMMONS_HTTPCLIENT_JAR=''
+COMMONS_LANG_JAR=''
+COMMONS_LOGGING_JAR=''
+COMPATH='/usr/lib/ccache'
+COM_IS=''
+CPP='gcc -E'
+CPPFLAGS=' '
+CPPUNIT_CFLAGS=''
+CPPUNIT_LIBS=''
+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=\"\" -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_LIBXRANDR=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=''
+DMAKE_PATH=''
+DMAKE_URL='http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2'
+DO_FETCH_TARBALLS='yes'
+DPKG='/usr/bin/dpkg'
+ECHO_C=''
+ECHO_N='-n'
+ECHO_T=''
+EGREP='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=''
+ENABLE_GNOMEVFS='TRUE'
+ENABLE_GRAPHITE='TRUE'
+ENABLE_GSTREAMER='TRUE'
+ENABLE_GTK='TRUE'
+ENABLE_HUNSPELL='YES'
+ENABLE_HYPHEN='YES'
+ENABLE_JAVASCRIPT='YES'
+ENABLE_KAB=''
+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_WERROR='FALSE'
+EPM=''
+EPM_URL='http://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz'
+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='40102'
+GCC_HOME='/usr/lib/ccache/gcc'
+GCONF_CFLAGS='-DORBIT2=1 -pthread -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GCONF_LIBS='-pthread -L/lib -lgconf-2 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0  '
+GIO_CFLAGS=''
+GIO_LIBS=''
+GNOMEVFS_CFLAGS='-pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GNOMEVFS_LIBS='-pthread -L/lib -lgnomevfs-2 -lgconf-2 -lgobject-2.0 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0  '
+GNUCP='/bin/cp'
+GNUMAKE='make'
+GNUPATCH=''
+GNUTAR='gtar'
+GOBJECT_CFLAGS=''
+GOBJECT_LIBS=''
+GPERF='/usr/bin/gperf'
+GRAPHITE_CFLAGS=''
+GRAPHITE_LIBS=''
+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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/gstreamer-0.10 -I/usr/include/libxml2  '
+GSTREAMER_LIBS='-pthread -L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgstinterfaces-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lxml2 -lz -lm -lglib-2.0  '
+GTHREAD_CFLAGS='-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  '
+GTHREAD_LIBS='-pthread -L/lib -lgthread-2.0 -lglib-2.0  '
+GTK_2_10_CFLAGS='-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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12  '
+GTK_2_10_LIBS='-L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  '
+GTK_CFLAGS='-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/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12  '
+GTK_LIBS='-L/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgdk_pixbuf_xlib-2.0 -lgdk_pixbuf-2.0 -lm -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0  '
+GXX_INCLUDE_PATH='/usr/include/c++/4.1.2'
+HAVE_ATLTHUNK=''
+HAVE_GCC_VISIBILITY_FEATURE='TRUE'
+HAVE_GETOPT='YES'
+HAVE_LD_BSYMBOLIC_FUNCTIONS=''
+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/bin/javac'
+JAVADOC='/usr/bin/javadoc'
+JAVAFLAGS='-source 1.5 -target 1.5'
+JAVAIFLAGS=''
+JAVAINTERPRETER='/usr/bin/java'
+JAVA_HOME='/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.41'
+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 -lXrandr -lcrypt '
+LIBSERIALIZER_JAR=''
+LIBWPD_CFLAGS=''
+LIBWPD_LIBS=''
+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_VERSION=''
+PAM='YES'
+PAM_LINK='NO'
+PATCH='/usr/bin/patch'
+PATH_SEPARATOR=':'
+PERL='/usr/local/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'
+SED='/bin/sed'
+SERF_CFLAGS=''
+SERF_LIBS=''
+SERIALIZER_JAR=''
+SERVLETAPI_JAR=''
+SHELL='/bin/sh'
+SHELLPATH='/bin'
+SIZEOF_LONG='4'
+SOLAR_JAVA='TRUE'
+SOURCEVERSION='AOO4111'
+SYSTEM_APACHE_COMMONS='NO'
+SYSTEM_APR='NO'
+SYSTEM_APR_UTIL='NO'
+SYSTEM_BOOST='NO'
+SYSTEM_BSH='NO'
+SYSTEM_CAIRO=''
+SYSTEM_COINMP='NO'
+SYSTEM_CPPUNIT='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_LIBWPD=''
+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='4111'
+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_CPPUNIT=''
+WITH_DICT=',ALL,'
+WITH_FONTS='YES'
+WITH_LANG='ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr 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'
+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/local/bin/zip'
+ZIP_HOME='/usr/local/bin'
+_cc=''
+_solenv='./solenv'
+ac_ct_CC='gcc'
+ac_ct_CXX='g++'
+ac_ct_MINGWCXX=''
+ac_ct_MINGWSTRIP=''
+ac_pt_PKG_CONFIG='/usr/bin/pkg-config'
+bindir='${exec_prefix}/bin'
+build='i686-pc-linux-gnu'
+build_alias=''
+build_cpu='i686'
+build_os='linux-gnu'
+build_vendor='pc'
+datadir='${prefix}/share'
+exec_prefix='${prefix}'
+host='i686-pc-linux-gnu'
+host_alias=''
+host_cpu='i686'
+host_os='linux-gnu'
+host_vendor='pc'
+includedir='${prefix}/include'
+infodir='${prefix}/info'
+libdir='${exec_prefix}/lib'
+libexecdir='${exec_prefix}/libexec'
+localstatedir='${prefix}/var'
+mandir='${prefix}/man'
+nodep=''
+oldincludedir='/usr/include'
+pkgpyexecdir=''
+pkgpythondir=''
+prefix='/usr/local'
+program_transform_name='s,x,x,'
+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. ##
+## ----------- ##
+
+#define HAVE_GETOPT 1
+#define HAVE_INTTYPES_H 1
+#define HAVE_LIBCRYPT 1
+#define HAVE_LIBGL 1
+#define HAVE_LIBGLU 1
+#define HAVE_LIBXINERAMA 1
+#define HAVE_LIBXRANDR 1
+#define HAVE_MEMORY_H 1
+#define HAVE_READDIR_R 1
+#define HAVE_STDINT_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STRINGS_H 1
+#define HAVE_STRING_H 1
+#define HAVE_SYS_STAT_H 1
+#define HAVE_SYS_TYPES_H 1
+#define HAVE_UNISTD_H 1
+#define PACKAGE_BUGREPORT ""
+#define PACKAGE_NAME ""
+#define PACKAGE_STRING ""
+#define PACKAGE_TARNAME ""
+#define PACKAGE_VERSION ""
+#define SIZEOF_LONG 4
+#define STDC_HEADERS 1
+#define _FILE_OFFSET_BITS 64
+#endif
+#ifdef __cplusplus
+extern "C" void std::exit (int) throw (); using std::exit;
+
+configure: exit 0

Added: openoffice/devtools/build-scripts/4.1.11/unxlngix6/build_aoo64bit_on_centos5.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.11/unxlngix6/build_aoo64bit_on_centos5.sh?rev=1892544&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.1.11/unxlngix6/build_aoo64bit_on_centos5.sh (added)
+++ openoffice/devtools/build-scripts/4.1.11/unxlngix6/build_aoo64bit_on_centos5.sh Mon Aug 23 11:33:27 2021
@@ -0,0 +1,84 @@
+#!/usr/bin/env bash
+
+#
+# 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
+
+wget -O external/unowinreg/unowinreg.dll http://www.openoffice.org/tools/unowinreg_prebuild/680/unowinreg.dll
+
+LANGS="ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW"
+
+if [ ! -e configure -o configure.in -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+./configure   \
+	--with-build-version="$(date +"%Y-%m-%d %H:%M") - `uname -sm`${AOO_BUILD_VERSION}" \
+	${AOO_VERBOSE_BUILD} \
+	--with-system-stdlibs \
+	--enable-crashdump=yes \
+	--enable-category-b \
+	--enable-wiki-publisher \
+	--enable-bundled-dictionaries \
+	--enable-opengl  \
+	--enable-dbus  \
+	--enable-gstreamer \
+	--without-junit \
+	--without-stlport \
+	--with-ant-home=$HOME/ant \
+	--with-package-format="rpm deb" \
+	--with-lang="${LANGS}" \
+	--with-dmake-url=http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2 \
+	--with-epm-url=http://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz \
+	| tee config.out || exit 1
+
+source ./LinuxX86-64Env.Set.sh || exit 1 
+./bootstrap || exit 1
+cd instsetoo_native
+time perl "$SOLARENV/bin/build.pl" --all -- -P6 || exit 1
+cd util
+if [ "$AOO_BUILD_BETA" = "yes" ]; then
+	dmake -P6 openofficebeta  || exit 1
+	dmake -P6 sdkoobeta_en-US || exit 1
+	dmake -P6 ooobetalanguagepack || exit 1
+elif [ "$AOO_BUILD_DEV" = "yes" ]; then
+	dmake -P6 openofficedev  || exit 1
+	dmake -P6 sdkoodev_en-US || exit 1
+	dmake -P6 ooodevlanguagepack || exit 1
+else
+	dmake -P6 ooolanguagepack || exit 1
+	dmake -P6 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.1.11/unxlngix6/build_aoo64bit_on_centos5.sh
------------------------------------------------------------------------------
    svn:executable = *