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

svn commit: r1906107 - in /openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos: build_aoo64bit_on_macos.sh config.log

Author: jim
Date: Tue Dec 20 13:26:16 2022
New Revision: 1906107

URL: http://svn.apache.org/viewvc?rev=1906107&view=rev
Log:
macOS builds for 4.2.0-Dev4

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

Added: openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/build_aoo64bit_on_macos.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/build_aoo64bit_on_macos.sh?rev=1906107&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/build_aoo64bit_on_macos.sh (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/build_aoo64bit_on_macos.sh Tue Dec 20 13:26:16 2022
@@ -0,0 +1,208 @@
+#!/usr/bin/env bash
+#
+
+set -eo pipefail
+
+# Build-script for AOO 4.2.x (and later) on macOS
+#
+# ENV:
+#    LC_CTYPE=en_US.UTF-8
+#    LANG=en_US.UTF-8
+#    PATH=~/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:.
+# 
+# 
+# Installed in /usr/local:
+# 
+#   o Apache ant 1.9.15 / 1.10.9
+#   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)
+#   o openssl 1.0.2u (no-shared)
+#   o libxml2-2.9.10 (--prefix=/usr/local --enable-shared=no)
+#   o libxslt-1.1.34 (--prefix=/usr/local --enable-shared=no)
+#   o libiconv-1.16 (./configure --enable-static --disable-shared --prefix=/usr/local)
+#   o curl-7.56.1 (--prefix=/usr/local --enable-shared=no)
+#   o jemalloc-5.2.1 (--prefix=/usr/local --enable-shared=no)
+#   o pkg-config 0.29.2 (--prefix=/usr/local)
+#   o GNU patch 2.7.6 (--prefix=/usr/local)
+# 
+# Macports (/opt/local):
+# 
+#   o autoconf (symlinked to ~/bin)
+#   o gnutar (symlinked to ~/bin)
+#   o perl5 (symlinked to ~/bin)
+#   o getopt (symlinked to ~/bin)
+#   o subversion
+#   o git
+# 
+# OS:
+# 
+#   o OSX 10.15.7 (Catalina)
+#   o Xcode 11.7 (for community builds)
+#   o jdk 1.7.0_80.jdk
+#   o openjdk 1.8.0_275.jdk
+# 
+
+#
+# Build options
+#
+AOO_MACOS_TARGET=10.9
+AOO_MACOS_SDK=
+AOO_JAVA_VERSION=1.8
+AOO_ANT_VERSION=1.10
+#
+# Just for now, for configure
+if [ -z "$SDKROOT" ] ; then
+  export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
+fi
+
+#
+# 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=
+AOO_BUILD_ALL="yes"
+AOO_BUILD_DEBUG=
+
+AOPTS=`getopt -o vsjtdbqa:j:m:k: --long verbose,debug,skip-config,just-config,build-src,dev,beta,quick,ant-version:,java-version:,macos-target:,macos-sdk: -n 'parse-options' -- "$@"`
+if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; exit 1 ; fi
+#echo "$AOPTS"
+eval set -- "$AOPTS"
+
+while true; do
+  case "$1" in
+    -v | --verbose ) AOO_VERBOSE_BUILD="--enable-verbose"; shift ;;
+    -s | --skip-config ) AOO_SKIP_CONFIG="yes"; shift ;;
+    -j | --just-config ) AOO_JUST_CONFIG="yes"; shift ;;
+    -t | --build-src ) AOO_BUILD_SRC="yes"; shift ;;
+    -q | --quick ) AOO_BUILD_ALL="no"; shift ;;
+    -a | --ant-version ) AOO_ANT_VERSION=$2; shift 2 ;;
+    -j | --java-version ) AOO_JAVA_VERSION=$2; shift 2 ;;
+    -m | --macos-target ) AOO_MACOS_TARGET=$2; shift 2 ;;
+    -k | --macos-sdk ) AOO_MACOS_SDK=$2; shift 2 ;;
+    -d | --dev ) AOO_BUILD_TYPE="Apache OpenOffice Test Development Build"; AOO_BUILD_VERSION=" [${AOO_BUILD_TYPE}]"; AOO_BUILD_DEV="yes"; AOO_BUILD_BETA=""; shift ;;
+    -b | --beta ) AOO_BUILD_TYPE="Apache OpenOffice Beta Build"; AOO_BUILD_VERSION=" [${AOO_BUILD_TYPE}]"; AOO_BUILD_BETA="yes"; AOO_BUILD_DEV=""; shift ;;
+    --debug ) AOO_BUILD_DEBUG="--enable-symbols"; shift ;;
+    -- ) shift; 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
+
+
+JAVA_HOME=$(/usr/libexec/java_home -v ${AOO_JAVA_VERSION})
+if [ ! -d "$JAVA_HOME" ] ; then
+    echo "JAVA_HOME not found: $JAVA_HOME"
+    exit 1
+fi
+export JAVA_HOME
+echo "JAVA_HOME is: $JAVA_HOME..."
+
+ANT_HOME=/usr/local/share/java/apache-ant-${AOO_ANT_VERSION}
+if [ ! -d "$ANT_HOME" ] ; then
+    echo "ANT_HOME not found: $ANT_HOME"
+    exit 1
+fi
+export ANT_HOME
+ANT_CLASSPATH=${ANT_HOME}/lib
+export ANT_CLASSPATH
+echo "ANT_HOME is: $ANT_HOME..."
+echo "ANT_CLASSPATH is: $ANT_CLASSPATH..."
+
+echo "Building for ${AOO_BUILD_TYPE}: min macOS ${AOO_MACOS_TARGET}, Java $(echo ${AOO_JAVA_VERSION} | sed -e s/..//) : Ant ${AOO_ANT_VERSION}"
+echo "---"
+echo "Starting build:"
+echo ""
+\rm -f solenv/inc/reporevision.lst
+sleep 5
+#Setup build Env
+export SYSTEM_VERSION_COMPAT=1
+export MACOSX_DEPLOYMENT_TARGET=${AOO_MACOS_TARGET}
+export LIBRARY_PATH=/usr/local/lib
+export C_INCLUDE_PATH=/usr/local/include
+export CPLUS_INCLUDE_PATH=/usr/local/include
+
+if [ ! -e external/unowinreg/unowinreg.dll ] ; then
+	echo "Downloading unowinreg.dll..."
+	curl -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"
+#LANGS="en-US"
+
+if [ ! -e configure -o configure.ac -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+
+if [ ! -z "$AOO_MACOS_SDK" ]; then
+    AOO_MACOS_SDK="--with-macosx-sdk=$AOO_MACOS_SDK"
+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} \
+	${AOO_BUILD_DEBUG} \
+	${AOO_MACOS_SDK} \
+	--with-openldap \
+	--with-system-openssl=/usr/local \
+	--with-system-libxslt=/usr/local \
+	--with-system-libxml=/usr/local \
+	--with-system-curl=/usr/local \
+	--enable-category-b \
+	--enable-beanshell \
+	--enable-bundled-dictionaries \
+	--enable-wiki-publisher \
+	--with-jdk-home="$JAVA_HOME" \
+	--with-ant-home="$ANT_HOME" \
+	--without-junit \
+	--with-epm=/usr/local/bin/epm \
+	--with-dmake-path=/usr/local/bin/dmake \
+	--without-stlport \
+	--with-package-format="dmg" \
+	--disable-systray \
+	--with-macosx-target=${AOO_MACOS_TARGET} \
+	--with-alloc=jemalloc \
+	--with-lang="${LANGS}" \
+	"$@" \
+	| tee config.out ) || exit 1
+fi
+
+if [ "$AOO_JUST_CONFIG" = "yes" ]; then
+    exit
+fi
+unset SDKROOT
+export SDKROOT
+./bootstrap || exit 1
+source ./MacOSXX64Env.Set.sh || exit 1
+cd instsetoo_native
+time perl "$SOLARENV/bin/build.pl" --all -- -P8 || exit 1
+
+cd util
+if [ "$AOO_BUILD_BETA" = "yes" ]; then
+    dmake -P8 openofficebeta  || exit 1
+	dmake -P8 sdkoobeta_en-US || exit 1
+	dmake -P8 ooobetalanguagepack || exit 1
+elif [ "$AOO_BUILD_DEV" = "yes" ]; then
+    dmake -P8 openofficedev  || exit 1
+	dmake -P8 sdkoodev_en-US || exit 1
+	dmake -P8 ooodevlanguagepack || exit 1
+elif [ "$AOO_BUILD_ALL" = "yes" ]; then
+	dmake -P8 ooolanguagepack || exit 1
+	dmake -P8 sdkoo_en-US || exit 1 
+fi
+if [ "$AOO_BUILD_SRC" = "yes" ]; then
+	dmake aoo_srcrelease || exit 1
+fi
+
+date "+Build ended at %H:%M:%S"

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

Added: openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/config.log
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/config.log?rev=1906107&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/config.log (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev4/unxmacos/config.log Tue Dec 20 13:26:16 2022
@@ -0,0 +1,1582 @@
+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.71.  Invocation command line was
+
+  $ ./configure '--with-build-version=2022-12-20 08:01:16 (Tue, 20 Dec 2022) - Darwin x86_64' --enable-verbose --with-openldap --with-system-openssl=/usr/local --with-system-libxslt=/usr/local --with-system-libxml=/usr/local --with-system-curl=/usr/local --enable-category-b --enable-beanshell --enable-bundled-dictionaries --enable-wiki-publisher --with-jdk-home=/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home --with-ant-home=/usr/local/share/java/apache-ant-1.10 --without-junit --with-epm=/usr/local/bin/epm --with-dmake-path=/usr/local/bin/dmake --without-stlport --with-package-format=dmg --disable-systray --with-macosx-target=10.9 --with-alloc=jemalloc '--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'
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = aoo-builder64-macos15.local
+uname -m = x86_64
+uname -r = 19.6.0
+uname -s = Darwin
+uname -v = Darwin Kernel Version 19.6.0: Tue Jun 22 19:49:55 PDT 2021; root:xnu-6153.141.35~1/RELEASE_X86_64
+
+/usr/bin/uname -p = i386
+/bin/uname -X     = unknown
+
+/bin/arch              = unknown
+/usr/bin/arch -k       = unknown
+/usr/convex/getsysinfo = unknown
+/usr/bin/hostinfo      = Mach kernel version:
+	 Darwin Kernel Version 19.6.0: Tue Jun 22 19:49:55 PDT 2021; root:xnu-6153.141.35~1/RELEASE_X86_64
+Kernel configured for up to 10 processors.
+10 processors are physically available.
+10 processors are logically available.
+Processor type: x86_64h (Intel x86-64h Haswell)
+Processors active: 0 1 2 3 4 5 6 7 8 9
+Primary memory available: 24.00 gigabytes
+Default processor set: 276 tasks, 882 threads, 10 processors
+Load average: 1.59, Mach factor: 8.39
+/bin/machine           = unknown
+/usr/bin/oslevel       = unknown
+/bin/universe          = unknown
+
+PATH: /Users/jim/bin/
+PATH: /usr/local/bin/
+PATH: /usr/local/sbin/
+PATH: /usr/bin/
+PATH: /bin/
+PATH: /usr/sbin/
+PATH: /sbin/
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:4396: looking for aux files: config.guess config.sub
+configure:4409:  trying ./
+configure:4438:   ./config.guess found
+configure:4438:   ./config.sub found
+configure:5916: checking whether configure is up-to-date
+configure:5923: result: yes
+configure:5950: checking for grep that handles long lines and -e
+configure:6014: result: /usr/bin/grep
+configure:6019: checking for egrep
+configure:6087: result: /usr/bin/grep -E
+configure:6099: checking for gawk
+configure:6134: result: no
+configure:6099: checking for mawk
+configure:6134: result: no
+configure:6099: checking for nawk
+configure:6134: result: no
+configure:6099: checking for awk
+configure:6120: found /usr/bin/awk
+configure:6131: result: awk
+configure:6144: checking for awk
+configure:6167: found /usr/bin/awk
+configure:6179: result: /usr/bin/awk
+configure:6195: checking for sed
+configure:6218: found /usr/bin/sed
+configure:6230: result: /usr/bin/sed
+configure:6245: checking for solenv environment
+configure:6249: result: default
+configure:6276: checking for custom pack.lst
+configure:6290: result: no
+configure:6304: checking build system type
+configure:6319: result: x86_64-apple-darwin19.6.0
+configure:6339: checking host system type
+configure:6353: result: x86_64-apple-darwin19.6.0
+configure:6373: checking target system type
+configure:6387: result: x86_64-apple-darwin19.6.0
+configure:6570: Detected Darwin version: 19 (10.15)
+configure:6713: checking for pkg-config
+configure:6736: found /usr/local/bin/pkg-config
+configure:6748: result: /usr/local/bin/pkg-config
+configure:6773: checking pkg-config is at least version 0.9.0
+configure:6776: result: yes
+configure:6786: checking whether to enable crashdump feature
+configure:6795: result: no
+configure:6859: checking whether to turn warnings to errors
+configure:6872: result: no
+configure:6877: checking whether to do a debug build
+configure:6888: result: no
+configure:6893: checking whether to build with additional debug utilities
+configure:6905: result: no, full product build
+configure:6912: checking whether to include symbols into final build
+configure:6934: result: no
+configure:6939: checking whether to strip the solver or not.
+configure:6958: result: yes
+configure:6975: checking whether to enable category B components
+configure:6995: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, graphite, coinmp to be built
+configure:7015: checking whether to enable the Online Update support
+configure:7020: result: yes
+configure:7029: checking whether to enable unit tests
+configure:7034: result: yes
+configure:7043: checking whether to enable native CUPS support
+configure:7047: result: yes
+configure:7056: checking whether to enable fontconfig support
+configure:7064: result: no
+configure:7125: checking whether to use RPATH in shared libraries
+configure:7132: result: yes
+configure:7153: checking whether to use dicts from external paths
+configure:7187: result: no
+configure:7236: checking for bash
+configure:7259: found /usr/local/bin/bash
+configure:7271: result: /usr/local/bin/bash
+configure:7286: checking gcc home
+configure:7293: result: /usr
+configure:7369: checking for gcc
+configure:7401: result: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64
+configure:7754: checking for C compiler version
+configure:7763: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 --version >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:7774: $? = 0
+configure:7763: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -v >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:7774: $? = 0
+configure:7763: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -V >&5
+clang: error: argument to '-V' is missing (expected 1 value)
+clang: error: no input files
+configure:7774: $? = 1
+configure:7763: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -qversion >&5
+clang: error: unknown argument '-qversion'; did you mean '--version'?
+clang: error: no input files
+configure:7774: $? = 1
+configure:7763: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -version >&5
+clang: error: unknown argument '-version'; did you mean '--version'?
+clang: error: no input files
+configure:7774: $? = 1
+configure:7794: checking whether the C compiler works
+configure:7816: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64    conftest.c  >&5
+configure:7820: $? = 0
+configure:7870: result: yes
+configure:7873: checking for C compiler default output file name
+configure:7875: result: a.out
+configure:7881: checking for suffix of executables
+configure:7888: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest    conftest.c  >&5
+configure:7892: $? = 0
+configure:7915: result: 
+configure:7937: checking whether we are cross compiling
+configure:7945: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest    conftest.c  >&5
+configure:7949: $? = 0
+configure:7956: ./conftest
+configure:7960: $? = 0
+configure:7975: result: no
+configure:7980: checking for suffix of object files
+configure:8003: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c   conftest.c >&5
+configure:8007: $? = 0
+configure:8029: result: o
+configure:8033: checking whether the compiler supports GNU C
+configure:8053: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c   conftest.c >&5
+configure:8053: $? = 0
+configure:8063: result: yes
+configure:8074: checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 accepts -g
+configure:8095: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g  conftest.c >&5
+configure:8095: $? = 0
+configure:8139: result: yes
+configure:8159: checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 option to enable C11 features
+configure:8174: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64  -c -g -O2  conftest.c >&5
+configure:8174: $? = 0
+configure:8192: result: none needed
+configure:8363: checking the GNU gcc compiler version
+configure:8379: result: implicitly using CC=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64
+configure:8399: checking for -Bsymbolic-functions linker support 
+configure:8419: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   -Wl,-Bsymbolic-functions -Wl,--dynamic-list-cpp-new -Wl,--dynamic-list-cpp-typeinfo conftest.c  >&5
+ld: unknown option: -Bsymbolic-functions
+clang: error: linker command failed with exit code 1 (use -v to see invocation)
+configure:8419: $? = 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 <stdio.h>
+| 
+| int
+| main (void)
+| {
+| 
+|     printf ("hello world\n");
+| 
+|   ;
+|   return 0;
+| }
+configure:8429: result: not found 
+configure:8436: checking whether to enable pch feature
+configure:8454: result: no
+configure:8459: checking for GNU make
+configure:8468: result: make
+configure:8474: checking the GNU make version
+configure:8479: result: make 4.2.1
+3+:
+configure:8486: checking for dmake
+configure:8547: looking for dmake at /usr/local/bin/dmake
+configure:8550: result: using user provided dmake
+configure:8573: checking whether the found dmake is the right dmake
+configure:8583: result: yes
+configure:8585: checking the dmake version
+configure:8593: result: OK, >= 4.11
+configure:8613: checking for GNU or compatible BSD tar
+configure:8622: result: gtar
+configure:8703: checking for --hash-style=both linker support 
+configure:8722: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   -Wl,--hash-style=both conftest.c  >&5
+ld: unknown option: --hash-style=both
+clang: error: linker command failed with exit code 1 (use -v to see invocation)
+configure:8722: $? = 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 <stdio.h>
+| 
+| int
+| main (void)
+| {
+| 
+|     printf ("hello world\n");
+| 
+|   ;
+|   return 0;
+| }
+configure:8734: result: not found 
+configure:8812: checking for perl
+configure:8835: found /usr/local/bin/perl
+configure:8847: result: /usr/local/bin/perl
+configure:8868: checking the Perl version
+configure:8875: result: checked (perl 5)
+configure:8882: checking for required Perl modules
+configure:8890: result: all modules found
+configure:9420: checking for stdio.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for stdlib.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for string.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for inttypes.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for stdint.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for strings.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for sys/stat.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for sys/types.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for unistd.h
+configure:9420: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9448: checking for egrep
+configure:9516: result: /usr/bin/grep -E
+configure:9653: checking for C++ compiler version
+configure:9662: /Users/jim/src/asf/aoo-git/main/macos_c11 --version >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:9673: $? = 0
+configure:9662: /Users/jim/src/asf/aoo-git/main/macos_c11 -v >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+clang: warning: argument unused during compilation: '-std=c++11' [-Wunused-command-line-argument]
+clang: warning: argument unused during compilation: '-stdlib=libc++' [-Wunused-command-line-argument]
+configure:9673: $? = 0
+configure:9662: /Users/jim/src/asf/aoo-git/main/macos_c11 -V >&5
+clang: error: argument to '-V' is missing (expected 1 value)
+clang: error: no input files
+configure:9673: $? = 1
+configure:9662: /Users/jim/src/asf/aoo-git/main/macos_c11 -qversion >&5
+clang: error: unknown argument '-qversion'; did you mean '--version'?
+clang: error: no input files
+configure:9673: $? = 1
+configure:9677: checking whether the compiler supports GNU C++
+configure:9697: /Users/jim/src/asf/aoo-git/main/macos_c11 -c   conftest.cpp >&5
+configure:9697: $? = 0
+configure:9707: result: yes
+configure:9718: checking whether /Users/jim/src/asf/aoo-git/main/macos_c11 accepts -g
+configure:9739: /Users/jim/src/asf/aoo-git/main/macos_c11 -c -g  conftest.cpp >&5
+configure:9739: $? = 0
+configure:9783: result: yes
+configure:9803: checking for /Users/jim/src/asf/aoo-git/main/macos_c11 option to enable C++11 features
+configure:9818: /Users/jim/src/asf/aoo-git/main/macos_c11  -c -g -O2  conftest.cpp >&5
+conftest.cpp:185:25: warning: empty parentheses interpreted as a function declaration [-Wvexing-parse]
+  cxx11test::delegate d2();
+                        ^~
+conftest.cpp:185:25: note: remove parentheses to declare a variable
+  cxx11test::delegate d2();
+                        ^~
+1 warning generated.
+configure:9818: $? = 0
+configure:9836: result: none needed
+configure:9905: checking how to run the C++ preprocessor
+configure:9927: /Users/jim/src/asf/aoo-git/main/macos_c11 -E  conftest.cpp
+configure:9927: $? = 0
+configure:9942: /Users/jim/src/asf/aoo-git/main/macos_c11 -E  conftest.cpp
+conftest.cpp:19:10: fatal error: 'ac_nonexistent.h' file not found
+#include <ac_nonexistent.h>
+         ^~~~~~~~~~~~~~~~~~
+1 error generated.
+configure:9942: $? = 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 HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:9969: result: /Users/jim/src/asf/aoo-git/main/macos_c11 -E
+configure:9983: /Users/jim/src/asf/aoo-git/main/macos_c11 -E  conftest.cpp
+configure:9983: $? = 0
+configure:9998: /Users/jim/src/asf/aoo-git/main/macos_c11 -E  conftest.cpp
+conftest.cpp:19:10: fatal error: 'ac_nonexistent.h' file not found
+#include <ac_nonexistent.h>
+         ^~~~~~~~~~~~~~~~~~
+1 error generated.
+configure:9998: $? = 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 HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:10037: checking how to run the C preprocessor
+configure:10063: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E  conftest.c
+configure:10063: $? = 0
+configure:10078: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E  conftest.c
+conftest.c:19:10: fatal error: 'ac_nonexistent.h' file not found
+#include <ac_nonexistent.h>
+         ^~~~~~~~~~~~~~~~~~
+1 error generated.
+configure:10078: $? = 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 HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:10105: result: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E
+configure:10119: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E  conftest.c
+configure:10119: $? = 0
+configure:10134: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E  conftest.c
+conftest.c:19:10: fatal error: 'ac_nonexistent.h' file not found
+#include <ac_nonexistent.h>
+         ^~~~~~~~~~~~~~~~~~
+1 error generated.
+configure:10134: $? = 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 HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define STDC_HEADERS 1
+| /* end confdefs.h.  */
+| #include <ac_nonexistent.h>
+configure:10171: checking size of long
+configure:10177: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c  >&5
+configure:10177: $? = 0
+configure:10177: ./conftest
+configure:10177: $? = 0
+configure:10192: result: 8
+configure:10202: checking whether byte ordering is bigendian
+configure:10218: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:10218: $? = 0
+configure:10264: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:10264: $? = 0
+configure:10283: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+conftest.c:27:4: error: use of undeclared identifier 'not'
+                 not big endian
+                 ^
+1 error generated.
+configure:10283: $? = 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 HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_INTTYPES_H 1
+| #define HAVE_STDINT_H 1
+| #define HAVE_STRINGS_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define STDC_HEADERS 1
+| #define SIZEOF_LONG 8
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+| 		#include <sys/param.h>
+| 
+| int
+| main (void)
+| {
+| #if BYTE_ORDER != BIG_ENDIAN
+| 		 not big endian
+| 		#endif
+| 
+|   ;
+|   return 0;
+| }
+configure:10417: result: no
+configure:10446: checking for special C compiler options needed for large files
+configure:10494: result: no
+configure:10500: checking for _FILE_OFFSET_BITS value needed for large files
+configure:10526: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:10526: $? = 0
+configure:10560: result: no
+configure:10689: checking for cups/cups.h
+configure:10689: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:10689: $? = 0
+configure:10689: result: yes
+configure:10977: checking for C++ compiler version
+configure:10986: /Users/jim/src/asf/aoo-git/main/macos_c11 --version >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:10997: $? = 0
+configure:10986: /Users/jim/src/asf/aoo-git/main/macos_c11 -v >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin19.6.0
+Thread model: posix
+InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+clang: warning: argument unused during compilation: '-std=c++11' [-Wunused-command-line-argument]
+clang: warning: argument unused during compilation: '-stdlib=libc++' [-Wunused-command-line-argument]
+configure:10997: $? = 0
+configure:10986: /Users/jim/src/asf/aoo-git/main/macos_c11 -V >&5
+clang: error: argument to '-V' is missing (expected 1 value)
+clang: error: no input files
+configure:10997: $? = 1
+configure:10986: /Users/jim/src/asf/aoo-git/main/macos_c11 -qversion >&5
+clang: error: unknown argument '-qversion'; did you mean '--version'?
+clang: error: no input files
+configure:10997: $? = 1
+configure:11001: checking whether the compiler supports GNU C++
+configure:11031: result: yes
+configure:11042: checking whether /Users/jim/src/asf/aoo-git/main/macos_c11 accepts -g
+configure:11107: result: yes
+configure:11127: checking for /Users/jim/src/asf/aoo-git/main/macos_c11 option to enable C++11 features
+configure:11160: result: none needed
+configure:11227: checking the GNU C++ compiler version
+configure:11233: result: checked (g++ 12.0.0)
+configure:11423: checking exception type
+configure:11459: result: 
+configure:11470: checking what the default STL should be
+configure:11482: checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 supports -fvisibility=hidden
+configure:11497: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 -fvisibility=hidden   conftest.c  >&5
+configure:11497: $? = 0
+configure:11505: result: yes
+configure:11516: checking whether we are allowed and able to use --ccache-skip
+configure:11531: result: probing...
+configure:11535: checking for ccache
+configure:11571: result: not_found
+configure:11580: not enabling --ccache-skip (ccache not found)
+configure:11775: checking which memory allocator to use
+configure:11862: result: jemalloc
+configure:11866: checking for malloc in -ljemalloc
+configure:11889: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 -pthread   conftest.c -ljemalloc   >&5
+conftest.c:24:6: warning: incompatible redeclaration of library function 'malloc' [-Wincompatible-library-redeclaration]
+char malloc ();
+     ^
+conftest.c:24:6: note: 'malloc' is a builtin with type 'void *(unsigned long)'
+1 warning generated.
+configure:11889: $? = 0
+configure:11899: result: yes
+configure:11951: checking whether to add custom build version
+configure:11955: result: yes, 2022-12-20 08:01:16 (Tue, 20 Dec 2022) - Darwin x86_64
+configure:11964: checking whether to build with Java support
+configure:11967: result: yes
+configure:12067: checking the installed JDK
+configure:12149: result: checked (JDK 1.8.0_281)
+configure:12495: checking for jawt lib name
+configure:12665: result: -ljawt
+configure:12671: checking whether to enable gcj aot compilation
+configure:12741: result: no
+configure:12757: checking whether to enable EPM for packing
+configure:12760: result: yes
+configure:12829: checking whether the found EPM is the right EPM
+configure:12832: result: yes
+configure:12837: checking EPM version
+configure:12841: result: OK, >= 5.0
+configure:12852: checking which package format to use
+configure:12920: result: dmg
+configure:13133: checking for gperf
+configure:13156: found /usr/bin/gperf
+configure:13168: result: /usr/bin/gperf
+configure:13179: checking for gperf
+configure:13214: result: /usr/bin/gperf
+configure:13232: checking gperf version
+configure:13235: result: OK
+configure:13243: checking whether to build the stax
+configure:13251: result: yes
+configure:13256: checking whether to build the ODK
+configure:13259: result: yes
+configure:13262: checking for external/unowinreg/unowinreg.dll
+configure:13270: result: found
+configure:13652: checking whether to provide libstdc++/libgcc_s in the installset
+configure:13660: result: yes
+configure:13669: checking which zlib to use
+configure:13673: result: external
+configure:13676: checking for zlib.h
+configure:13676: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:13676: $? = 0
+configure:13676: result: yes
+configure:13684: checking for deflate in -lz
+configure:13707: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c -lz  -ljemalloc  >&5
+configure:13707: $? = 0
+configure:13717: result: yes
+configure:13734: checking which jpeg to use
+configure:13793: result: internal
+configure:13800: checking which expat to use
+configure:13862: result: internal
+configure:14042: checking which libxslt to use
+configure:14047: result: external
+configure:14150: checking for xsltproc
+configure:14173: found /usr/local/bin/xsltproc
+configure:14186: result: /usr/local/bin/xsltproc
+configure:14208: checking which libxml to use
+configure:14213: result: external
+configure:14327: checking checking SDK compatibility with OSX 10.9
+configure:14345: result: yes, by using SDK macosx10.15
+configure:14359: checking for /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk
+configure:14362: result: yes
+configure:14378: checking which python to use
+configure:14387: result: compiling against system python (/usr/bin/python)
+configure:14394: result: compiling against system python (version 2.7)
+configure:14813: checking for Python.h
+configure:14813: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/python2.7 conftest.c >&5
+configure:14813: $? = 0
+configure:14813: result: yes
+configure:14889: checking which lucene to use
+configure:15112: result: internal
+configure:15121: checking whether to build the MySQL Connector extension
+configure:15137: result: no
+configure:15377: checking which hsqldb to use
+configure:15442: result: internal
+configure:15451: checking which beanshell to use
+configure:15487: result: internal
+configure:15503: checking which saxon to use
+configure:15711: result: internal
+configure:15727: checking whether to enable support for JavaScript
+configure:15731: result: yes
+configure:15745: checking which libapr to use
+configure:15843: result: internal
+configure:15856: checking which libapr-util to use
+configure:15954: result: internal
+configure:15967: checking which libserf to use
+configure:16066: result: internal
+configure:16080: checking whether to enable support for CoinMP
+configure:16084: result: yes
+configure:16088: checking which coinmp to use
+configure:16273: result: internal
+configure:16292: checking which curl to use
+configure:16296: result: external
+configure:16302: checking for curl-config
+configure:16325: found /usr/local/bin/curl-config
+configure:16337: result: /usr/local/bin/curl-config
+configure:16350: checking whether curl is >= 7.13.1
+configure:16357: result: yes
+configure:16372: checking which mdds to use
+configure:16400: result: internal
+configure:16407: checking which boost to use
+configure:16483: result: internal
+configure:16490: checking which vigra to use
+configure:16518: result: internal
+configure:16525: checking which odbc headers to use
+configure:16542: result: internal
+configure:16549: checking whether to build XML Security support
+configure:16555: result: yes
+configure:16559: checking whether to build LDAP configuration backend
+configure:16563: result: yes
+configure:16576: checking which LDAP SDK to use
+configure:16579: result: OpenLDAP
+configure:16584: checking for ldap.h
+configure:16584: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2  conftest.c >&5
+configure:16584: $? = 0
+configure:16584: result: yes
+configure:16594: checking for ldap_simple_bind_s in -lldap
+configure:16617: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c -lldap  -ljemalloc  >&5
+configure:16617: $? = 0
+configure:16627: result: yes
+configure:16641: checking for ldap_set_option in -lldap
+configure:16664: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c -lldap  -lldap -ljemalloc  >&5
+configure:16664: $? = 0
+configure:16674: result: yes
+configure:16691: checking whether to build the internal NSS module
+configure:16696: result: yes
+configure:16736: checking which sane header to use
+configure:16752: result: internal
+configure:16759: checking which icu to use
+configure:17004: result: internal
+configure:17019: checking whether to enable graphite support
+configure:17130: result: no
+configure:17145: checking for /System/Library/Frameworks/AppKit.framework
+configure:17148: result: yes
+configure:18060: checking whether to link to Xrender
+configure:18068: result: no, dynamically open it
+configure:18072: checking which Xrender headers to use
+configure:18088: result: internal
+configure:18143: checking whether to enable RandR support
+configure:18286: result: no
+configure:18294: checking which libnss to use
+configure:18392: result: internal
+configure:18401: checking which libssl to use
+configure:18405: result: external
+configure:18413: checking for OPENSSL
+configure:18420: $PKG_CONFIG --exists --print-errors "openssl "
+configure:18423: $? = 0
+configure:18437: $PKG_CONFIG --exists --print-errors "openssl "
+configure:18440: $? = 0
+configure:18498: result: yes
+configure:18514: checking which redland library to use
+configure:18613: result: internal
+configure:18622: checking whether to build the Spell Checking component
+configure:18627: checking which libhunspell to use
+configure:18781: result: internal
+configure:18796: checking whether to build the Hyphenator component
+configure:18801: checking which libhyphen to use
+configure:18956: result: internal
+configure:18983: checking which mythes to use
+configure:19174: result: internal
+configure:19184: checking which libtextcat to use
+configure:19244: result: internal
+configure:19251: checking which libtextcat data directory to use
+configure:19262: result: internal
+configure:19325: checking for getopt
+configure:19325: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c -lldap -lldap -ljemalloc  >&5
+configure:19325: $? = 0
+configure:19325: result: yes
+configure:19338: checking for readdir_r
+configure:19338: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2   conftest.c -lldap -lldap -ljemalloc  >&5
+configure:19338: $? = 0
+configure:19338: result: yes
+configure:19719: checking for bison
+configure:19742: found /usr/bin/bison
+configure:19754: result: /usr/bin/bison
+configure:19765: checking the bison version
+configure:19776: result: checked (/usr/bin/bison 2.3)
+configure:19785: checking for flex
+configure:19808: found /usr/bin/flex
+configure:19820: result: /usr/bin/flex
+configure:19833: checking for patch
+configure:19856: found /usr/local/bin/patch
+configure:19868: result: /usr/local/bin/patch
+configure:19891: checking whether /usr/local/bin/patch is GNU patch
+configure:19894: result: yes
+configure:19911: checking for gnucp
+configure:19949: result: no
+configure:19911: checking for cp
+configure:19934: found /bin/cp
+configure:19946: result: /bin/cp
+configure:19969: checking whether /bin/cp is GNU cp from coreutils with preserve= support
+configure:19975: result: no
+configure:19984: result: no GNU cp from coreutils found - using the system's cp command
+configure:20198: checking for zip
+configure:20221: found /usr/bin/zip
+configure:20233: result: /usr/bin/zip
+configure:20243: checking for unzip
+configure:20266: found /usr/bin/unzip
+configure:20278: result: /usr/bin/unzip
+configure:20381: checking which VCLplugs shall be built
+configure:20405: result: none
+configure:20414: checking whether to enable GConf support
+configure:20512: result: no
+configure:20519: checking whether to enable GNOME VFS support
+configure:20710: result: no
+configure:21277: checking whether to use cairo
+configure:21430: result: no
+configure:21448: checking whether to build the OpenGL Transitions component
+configure:21549: result: no
+configure:21556: checking whether to build the PDF Import extension
+configure:21668: result: no
+configure:21677: checking whether to build the Wiki Publisher extension
+configure:21680: result: yes
+configure:21682: checking for swext module
+configure:21685: result: OK
+configure:21700: checking which Servlet API Jar to use
+configure:21735: result: internal
+configure:21744: checking whether to build the Report Builder extension
+configure:22574: result: no
+configure:22595: checking which Apache commons-* libs to use
+configure:22934: result: internal
+configure:23311: checking whether to enable the lockdown pieces
+configure:23319: result: no
+configure:23324: checking whether to enable evolution 2 support
+configure:23423: result: no
+configure:23430: checking whether to include MathMLDTD
+configure:23438: result: yes
+configure:23449: checking whether to include category B fonts
+configure:23452: result: yes
+configure:23464: checking whether to include category A fonts
+configure:23467: result: yes
+configure:23479: checking whether any fonts are included
+configure:23484: result: yes
+configure:23495: checking whether to include PPDs
+configure:23498: result: yes
+configure:23508: checking whether to include AFMs
+configure:23511: result: yes
+configure:23524: checking whether and how to use Xinerama
+configure:23529: result: yes
+configure:23661: checking whether to build own version of libpng
+configure:23672: result: yes
+configure:23684: checking whether to build own version of libjpeg
+configure:23707: result: yes
+configure:23713: checking whether to trigger rat scan
+configure:23716: result: no
+configure:23912: checking for apache-ant
+configure:23951: result: no
+configure:23912: checking for ant
+configure:23936: found /usr/local/share/java/apache-ant-1.10/bin/ant
+configure:23948: result: /usr/local/share/java/apache-ant-1.10/bin/ant
+configure:23983: checking if /usr/local/share/java/apache-ant-1.10/bin/ant works
+configure:24008: /usr/local/share/java/apache-ant-1.10/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: /Users/jim/src/asf/aoo-git/main/conftest.xml
+
+conftest:
+    [javac] /Users/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:24011: $? = 0
+configure:24014: result: Ant works
+configure:24042: checking Ant lib directory
+configure:24069: result: Ant lib directory found.
+configure:24082: checking whether ant is >= 1.9.1
+configure: ant_version 1.10.9 
+configure: ant_version_major 1 
+configure: ant_version_minor 10 
+configure:24094: result: yes, 1.10.9
+configure:24101: checking whether ant supports mapper type="regexp"
+configure:24134: /usr/local/share/java/apache-ant-1.10/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: /Users/jim/src/asf/aoo-git/main/conftest.xml
+
+copytest:
+
+conftest:
+    [javac] /Users/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:24137: $? = 0
+configure:24140: result: yes
+configure:24237: checking for hamcrest-core
+configure:24293: result: no, skipping
+configure:24304: checking which languages to be built
+configure:24311: 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:24318: checking which languages have poor help localizations
+configure:24322: result: none
+configure:24330: checking which dictionaries to include
+configure:24334: result: ALL
+configure:24343: checking for additional 'intro' bitmaps
+configure:24348: result: none
+configure:24366: checking for additional 'about' bitmaps
+configure:24371: result: none
+configure:24390: checking for vendor
+configure:24393: result: not set
+configure:24403: checking for UNIX wrapper name
+configure:24406: result: not set
+configure:24415: checking whether to statically link to Gtk
+configure:24423: result: no
+configure:24428: checking whether to use layout dialogs
+configure:24436: result: no
+configure:24444: checking build verbosity
+configure:24449: result: high
+configure:24463: checking whether to enable dependency tracking
+configure:24470: result: yes
+configure:24487: checking solver path
+configure:24491: result: default
+configure:24510: writing config.status
+configure:24663: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by config.status, which was
+generated by GNU Autoconf 2.71.  Invocation command line was
+
+  CONFIG_FILES    = 
+  CONFIG_HEADERS  = 
+  CONFIG_LINKS    = 
+  CONFIG_COMMANDS = 
+  $ ./config.status 
+
+on aoo-builder64-macos15.local
+
+config.status:1116: creating set_soenv
+config.status:1116: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=x86_64-apple-darwin19.6.0
+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_getopt=yes
+ac_cv_func_readdir_r=yes
+ac_cv_header_Python_h=yes
+ac_cv_header_cups_cups_h=yes
+ac_cv_header_inttypes_h=yes
+ac_cv_header_ldap_h=yes
+ac_cv_header_stdint_h=yes
+ac_cv_header_stdio_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_header_zlib_h=yes
+ac_cv_host=x86_64-apple-darwin19.6.0
+ac_cv_lib_jemalloc_malloc=yes
+ac_cv_lib_ldap_ldap_set_option=yes
+ac_cv_lib_ldap_ldap_simple_bind_s=yes
+ac_cv_lib_z_deflate=yes
+ac_cv_objext=o
+ac_cv_path_ANT=/usr/local/share/java/apache-ant-1.10/bin/ant
+ac_cv_path_AWK=/usr/bin/awk
+ac_cv_path_BISON=/usr/bin/bison
+ac_cv_path_CCACHE=not_found
+ac_cv_path_CURLCONFIG=/usr/local/bin/curl-config
+ac_cv_path_EGREP='/usr/bin/grep -E'
+ac_cv_path_FLEX=/usr/bin/flex
+ac_cv_path_GNUCP=/bin/cp
+ac_cv_path_GPERF=/usr/bin/gperf
+ac_cv_path_GREP=/usr/bin/grep
+ac_cv_path_PATCH=/usr/local/bin/patch
+ac_cv_path_PERL=/usr/local/bin/perl
+ac_cv_path_SED=/usr/bin/sed
+ac_cv_path_SHELLPATH=/usr/local/bin/bash
+ac_cv_path_UNZIP=/usr/bin/unzip
+ac_cv_path_XSLTPROC=/usr/local/bin/xsltproc
+ac_cv_path_ZIP=/usr/bin/zip
+ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config
+ac_cv_prog_AWK=awk
+ac_cv_prog_CPP='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E'
+ac_cv_prog_CXXCPP='/Users/jim/src/asf/aoo-git/main/macos_c11 -E'
+ac_cv_prog_ac_ct_CC='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64'
+ac_cv_prog_cc_c11=
+ac_cv_prog_cc_g=yes
+ac_cv_prog_cc_stdc=
+ac_cv_prog_cxx_11=no
+ac_cv_prog_cxx_cxx11=
+ac_cv_prog_cxx_g=yes
+ac_cv_prog_cxx_stdcxx=
+ac_cv_sizeof_long=8
+ac_cv_sys_file_offset_bits=no
+ac_cv_sys_largefile_CC=no
+ac_cv_target=x86_64-apple-darwin19.6.0
+pkg_cv_OPENSSL_CFLAGS=
+pkg_cv_OPENSSL_LIBS='-L/usr/local/lib -lssl -lcrypto'
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+ABOUT_BITMAPS=''
+ADDITIONAL_REPOSITORIES='../ext_libraries ../extras'
+ALLOC='JEMALLOC'
+ANT='/usr/local/share/java/apache-ant-1.10/bin/ant'
+ANT_HOME='/usr/local/share/java/apache-ant-1.10'
+ANT_LIB='/usr/local/share/java/apache-ant-1.10/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/awk'
+AWTLIB='-ljawt'
+BISON='/usr/bin/bison'
+BSH_JAR=''
+BUILD_EPM='NO'
+BUILD_PIXMAN=''
+BUILD_STAX='YES'
+BUILD_TYPE='OOo GTEST ODK JPEG EXPAT LIBXMLSEC LUCENE HSQLDB BSH SAXON RHINO APR APR_UTIL SERF COINMP COINMP MDDS BOOST VIGRA UNIXODBC NSS SANE ICU X11_EXTENSIONS NSS REDLAND HUNSPELL HYPHEN MYTHES LIBTEXTCAT LIBTEXTCATDATA SWEXT TOMCAT APACHE_COMMONS TOMCAT MATHMLDTD CATB_FONTS MORE_FONTS AFMS L10N'
+BUILD_UNOWINREG='NO'
+BUILD_VER_STRING='2022-12-20 08:01:16 (Tue, 20 Dec 2022) - Darwin x86_64'
+BUILD_WIN64=''
+BUILD_X64=''
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2=''
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64'
+CCACHE='not_found'
+CCNUMVER='001200000000'
+CCVER='12.0.0'
+CC_PATH='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/'
+CFLAGS='-g -O2'
+COINMP_CFLAGS=''
+COINMP_LIBS=''
+COM='CLANG'
+COMEX=''
+COMID='s5abi'
+COMMONS_CODEC_JAR=''
+COMMONS_HTTPCLIENT_JAR=''
+COMMONS_LANG_JAR=''
+COMMONS_LOGGING_JAR=''
+COMNAME='s5abi'
+COMPATH='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr'
+CPP='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E'
+CPPFLAGS=''
+CRYPT_LINK=''
+CSC_PATH=''
+CURLCONFIG='/usr/local/bin/curl-config'
+CURL_CFLAGS='-DCURL_STATICLIB -I/usr/local/include'
+CURL_LIBS='-L/usr/local/lib -lcurl -lssl -lcrypto -lssl -lcrypto -lldap -lz'
+CUSTOM_PACK_LIST=''
+CXX='/Users/jim/src/asf/aoo-git/main/macos_c11'
+CXXCPP='/Users/jim/src/asf/aoo-git/main/macos_c11 -E'
+CXXFLAGS='-g -O2'
+CYGWIN_PATH='NO_CYGWIN'
+DBUS_CFLAGS=''
+DBUS_LIBS=''
+DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DSIZEOF_LONG=8 -DHAVE_LIBJEMALLOC=1 -DHAVE_LDAP_H=1 -DHAVE_LIBLDAP=1 -DHAVE_LIBLDAP=1 -DHAVE_GETOPT=1 -DHAVE_READDIR_R=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=''
+ECHO_C='\c'
+ECHO_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=''
+ENABLE_CUPS=''
+ENABLE_DBUS=''
+ENABLE_DEBUG='FALSE'
+ENABLE_DIRECTX=''
+ENABLE_DIRECT_DRAW=''
+ENABLE_EVOAB2=''
+ENABLE_FONTCONFIG=''
+ENABLE_GCONF=''
+ENABLE_GIO=''
+ENABLE_GNOMEVFS=''
+ENABLE_GRAPHITE='FALSE'
+ENABLE_GSTREAMER=''
+ENABLE_GTK=''
+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=''
+ENABLE_PCH=''
+ENABLE_PDFIMPORT='NO'
+ENABLE_RANDR=''
+ENABLE_REPORTBUILDER='NO'
+ENABLE_RPATH='yes'
+ENABLE_STATIC_GTK='FALSE'
+ENABLE_SYMBOLS=''
+ENABLE_SYSTRAY_GTK=''
+ENABLE_UNIT_TESTS='YES'
+ENABLE_WERROR='FALSE'
+EPM='/usr/local/bin/epm'
+EPM_URL=''
+EXCEPTIONS=''
+EXEEXT=''
+FAKEROOT=''
+FBSD_GCC_RPATH=''
+FLEX='/usr/bin/flex'
+FLUTE_JAR=''
+FRAME_HOME=''
+FREETYPE_CFLAGS=''
+FREETYPE_LIBS=''
+GCCVER='120000'
+GCC_HOME='/usr'
+GCONF_CFLAGS=''
+GCONF_LIBS=''
+GIO_CFLAGS=''
+GIO_LIBS=''
+GNOMEVFS_CFLAGS=''
+GNOMEVFS_LIBS=''
+GNUCP=''
+GNUMAKE='make'
+GNUPATCH='/usr/local/bin/patch'
+GNUTAR='gtar'
+GOBJECT_CFLAGS=''
+GOBJECT_LIBS=''
+GPERF='/usr/bin/gperf'
+GRAPHITE_CFLAGS=''
+GRAPHITE_LIBS=''
+GREP='/usr/bin/grep'
+GSTREAMER_CFLAGS=''
+GSTREAMER_LIBS=''
+GTHREAD_CFLAGS=''
+GTHREAD_LIBS=''
+GTK_2_10_CFLAGS=''
+GTK_2_10_LIBS=''
+GTK_CFLAGS=''
+GTK_LIBS=''
+HAMCREST_CORE_JAR=''
+HAVE_ATLTHUNK=''
+HAVE_GCC_VISIBILITY_FEATURE='TRUE'
+HAVE_GETOPT='YES'
+HAVE_LD_BSYMBOLIC_FUNCTIONS=''
+HAVE_LD_HASH_STYLE='FALSE'
+HAVE_READDIR_R='YES'
+HOME='/Users/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='/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home/bin/javac'
+JAVADOC='/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home/bin/javadoc'
+JAVAFLAGS=''
+JAVAIFLAGS=''
+JAVAINTERPRETER='/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home/bin/java'
+JAVA_HOME='/Library/Java/JavaVirtualMachines/jdk1.8.0_281.jdk/Contents/Home'
+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='-lldap -lldap -ljemalloc '
+LIBSERIALIZER_JAR=''
+LIBXML_CFLAGS='-I/usr/local/include/libxml2'
+LIBXML_JAR=''
+LIBXML_LIBS='-L/usr/local/lib -lxml2 -lz -lpthread -liconv -lm'
+LIBXSLT_CFLAGS='-I/usr/local/include/libxml2 -I/usr/local/include'
+LIBXSLT_LIBS='-L/usr/local/lib -lxslt -lxml2 -lpthread -lz -liconv -lm'
+LOCAL_SOLENV='DEFAULT'
+LOCAL_SOLVER='DEFAULT'
+LTLIBOBJS=''
+LUCENE_ANALYZERS_JAR=''
+LUCENE_CORE_JAR=''
+MACOSX_DEPLOYMENT_TARGET='10.9'
+MACOSX_SDK_PATH='/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk'
+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='-L/usr/local/lib -lssl -lcrypto'
+OSVERSION=''
+PACKAGE_BUGREPORT=''
+PACKAGE_NAME=''
+PACKAGE_STRING=''
+PACKAGE_TARNAME=''
+PACKAGE_URL=''
+PACKAGE_VERSION=''
+PAM=''
+PAM_LINK=''
+PATCH='/usr/local/bin/patch'
+PATH_SEPARATOR=':'
+PERL='/usr/local/bin/perl'
+PKGFORMAT='dmg'
+PKGMK=''
+PKG_CONFIG='/usr/local/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='-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/python2.7'
+PYTHON_EXEC_PREFIX=''
+PYTHON_LIBS='-framework Python'
+PYTHON_PLATFORM=''
+PYTHON_PREFIX=''
+PYTHON_VERSION=''
+RAT_JAR_HOME=''
+REDLAND_CFLAGS=''
+REDLAND_LIBS=''
+RPM=''
+SAC_JAR=''
+SAXON_JAR=''
+SCPDEFS=' -DENABLE_ONLINE_UPDATE -DWITH_CATB_FONTS -DWITH_CATA_FONTS'
+SDKROOT='/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk'
+SED='/usr/bin/sed'
+SERF_CFLAGS=''
+SERF_LIBS=''
+SERIALIZER_JAR=''
+SERVLETAPI_JAR=''
+SHELL='/bin/sh'
+SHELLPATH='/usr/local/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='YES'
+SYSTEM_DICTS='NO'
+SYSTEM_EXPAT='NO'
+SYSTEM_GDKPIXBUF='YES'
+SYSTEM_GENBRK=''
+SYSTEM_GENCCODE=''
+SYSTEM_GENCMN=''
+SYSTEM_GETTEXT='YES'
+SYSTEM_GLIB='YES'
+SYSTEM_GRAPHITE=''
+SYSTEM_HSQLDB='NO'
+SYSTEM_HUNSPELL='NO'
+SYSTEM_HYPH='NO'
+SYSTEM_ICU='NO'
+SYSTEM_JFREEREPORT=''
+SYSTEM_JPEG='NO'
+SYSTEM_LIBC='YES'
+SYSTEM_LIBJPEG='NO'
+SYSTEM_LIBPNG='NO'
+SYSTEM_LIBTEXTCAT='NO'
+SYSTEM_LIBTEXTCAT_DATA=''
+SYSTEM_LIBXML='YES'
+SYSTEM_LIBXSLT='YES'
+SYSTEM_LUCENE='NO'
+SYSTEM_MDDS='NO'
+SYSTEM_MYSQL=''
+SYSTEM_MYSQL_CPPCONN=''
+SYSTEM_MYTHES='NO'
+SYSTEM_NSS='NO'
+SYSTEM_ODBC_HEADERS='NO'
+SYSTEM_OPENSSL='YES'
+SYSTEM_PANGO='YES'
+SYSTEM_POPPLER=''
+SYSTEM_PYTHON='YES'
+SYSTEM_REDLAND='NO'
+SYSTEM_SANE_HEADER='NO'
+SYSTEM_SAXON='NO'
+SYSTEM_SERF='NO'
+SYSTEM_SERVLETAPI='NO'
+SYSTEM_STDLIBS='NO'
+SYSTEM_VIGRA='NO'
+SYSTEM_XRENDER_HEADERS='NO'
+SYSTEM_ZLIB='YES'
+TARFILE_LOCATION='DEFAULT'
+THES_SYSTEM_DIR=''
+UNIXWRAPPERNAME=''
+UNZIP='/usr/bin/unzip'
+UPD='420'
+USE_CCACHE=''
+USE_FT_EMBOLDEN=''
+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='YES'
+WITH_MINGWIN='0'
+WITH_OPENLDAP='YES'
+WITH_POOR_HELP_LOCALIZATIONS=''
+WITH_VC_REDIST=''
+WORDS_BIGENDIAN='no'
+XAU_LIBS=''
+XINC='no_x_includes'
+XINERAMA_LINK='dynamic'
+XLIB='no_x_libraries'
+XMKMF=''
+XRANDR_CFLAGS=''
+XRANDR_DLOPEN=''
+XRANDR_LIBS=''
+XRENDER_LINK='NO'
+XSLTPROC='/usr/local/bin/xsltproc'
+X_CFLAGS=''
+X_EXTRA_LIBS=''
+X_LIBS=''
+X_PRE_LIBS=''
+ZIP='/usr/bin/zip'
+ZIP_HOME='/usr/bin'
+_cc=''
+_solenv='./solenv'
+ac_ct_CC='/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64'
+ac_ct_CXX=''
+bindir='${exec_prefix}/bin'
+build='x86_64-apple-darwin19.6.0'
+build_alias=''
+build_cpu='x86_64'
+build_os='darwin19.6.0'
+build_vendor='apple'
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host='x86_64-apple-darwin19.6.0'
+host_alias=''
+host_cpu='x86_64'
+host_os='darwin19.6.0'
+host_vendor='apple'
+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=''
+runstatedir='${localstatedir}/run'
+sbindir='${exec_prefix}/sbin'
+sharedstatedir='${prefix}/com'
+sysconfdir='${prefix}/etc'
+target='x86_64-apple-darwin19.6.0'
+target_alias=''
+target_cpu='x86_64'
+target_os='darwin19.6.0'
+target_vendor='apple'
+
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+
+/* confdefs.h */
+#define PACKAGE_NAME ""
+#define PACKAGE_TARNAME ""
+#define PACKAGE_VERSION ""
+#define PACKAGE_STRING ""
+#define PACKAGE_BUGREPORT ""
+#define PACKAGE_URL ""
+#define HAVE_STDIO_H 1
+#define HAVE_STDLIB_H 1
+#define HAVE_STRING_H 1
+#define HAVE_INTTYPES_H 1
+#define HAVE_STDINT_H 1
+#define HAVE_STRINGS_H 1
+#define HAVE_SYS_STAT_H 1
+#define HAVE_SYS_TYPES_H 1
+#define HAVE_UNISTD_H 1
+#define STDC_HEADERS 1
+#define SIZEOF_LONG 8
+#define HAVE_LIBJEMALLOC 1
+#define HAVE_LDAP_H 1
+#define HAVE_LIBLDAP 1
+#define HAVE_LIBLDAP 1
+#define HAVE_GETOPT 1
+#define HAVE_READDIR_R 1
+
+configure: exit 0