Author: jim
Date: Mon Jan 29 16:23:47 2024
New Revision: 1915457

URL: http://svn.apache.org/viewvc?rev=1915457&view=rev
Log:
macOS Build stats for 4.2.0-Dev5

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

Added: 
openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/build_aoo64bit_on_macos.sh
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/build_aoo64bit_on_macos.sh?rev=1915457&view=auto
==============================================================================
--- 
openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/build_aoo64bit_on_macos.sh
 (added)
+++ 
openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/build_aoo64bit_on_macos.sh
 Mon Jan 29 16:23:47 2024
@@ -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-Dev5/unxmacos/build_aoo64bit_on_macos.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/config.log
URL: 
http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/config.log?rev=1915457&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/config.log (added)
+++ openoffice/devtools/build-scripts/4.2.0-Dev5/unxmacos/config.log Mon Jan 29 
16:23:47 2024
@@ -0,0 +1,1580 @@
+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=2024-01-29 07:19:56 (Mon, 29 Jan 2024) - 
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
+uname -m = x86_64
+uname -r = 20.6.0
+uname -s = Darwin
+uname -v = Darwin Kernel Version 20.6.0: Sun Nov  6 23:17:00 PST 2022; 
root:xnu-7195.141.46~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 20.6.0: Sun Nov  6 23:17:00 PST 2022; 
root:xnu-7195.141.46~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: 366 tasks, 1156 threads, 10 processors
+Load average: 1.96, Mach factor: 8.03
+/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-darwin20.6.0
+configure:6339: checking host system type
+configure:6353: result: x86_64-apple-darwin20.6.0
+configure:6373: checking target system type
+configure:6387: result: x86_64-apple-darwin20.6.0
+configure:6570: Detected Darwin version: 20 (10.16)
+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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
+configure:7754: checking for C compiler version
+configure:7763: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 --version >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:7774: $? = 0
+configure:7763: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -v >&5
+Apple clang version 12.0.0 (clang-1200.0.32.29)
+Target: x86_64-apple-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+configure:7774: $? = 0
+configure:7763: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -V >&5
+clang: error: argument to '-V' is missing (expected 1 value)
+clang: error: no input files
+configure:7774: $? = 1
+configure:7763: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -qversion >&5
+clang: error: unknown argument '-qversion'; did you mean '--version'?
+clang: error: no input files
+configure:7774: $? = 1
+configure:7763: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
    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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -o conftest    conftest.c  >&5
+configure:7892: $? = 0
+configure:7915: result: 
+configure:7937: checking whether we are cross compiling
+configure:7945: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c   conftest.c >&5
+configure:8007: $? = 0
+configure:8029: result: o
+configure:8033: checking whether the compiler supports GNU C
+configure:8053: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c   conftest.c >&5
+configure:8053: $? = 0
+configure:8063: result: yes
+configure:8074: checking whether 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 accepts -g
+configure:8095: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g  conftest.c >&5
+configure:8095: $? = 0
+configure:8139: result: yes
+configure:8159: checking for 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 option to enable C11 features
+configure:8174: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
  -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
+configure:8399: checking for -Bsymbolic-functions linker support 
+configure:8419: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for stdlib.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for string.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for inttypes.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for stdint.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for strings.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for sys/stat.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for sys/types.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:9420: $? = 0
+configure:9420: result: yes
+configure:9420: checking for unistd.h
+configure:9420: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.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-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+clang: warning: argument unused during compilation: '-std=c++11' 
[-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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -E  conftest.c
+configure:10063: $? = 0
+configure:10078: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -E
+configure:10119: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -E  conftest.c
+configure:10119: $? = 0
+configure:10134: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:10218: $? = 0
+configure:10264: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:10264: $? = 0
+configure:10283: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:10526: $? = 0
+configure:10560: result: no
+configure:10689: checking for cups/cups.h
+configure:10689: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.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-darwin20.6.0
+Thread model: posix
+InstalledDir: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+clang: warning: argument unused during compilation: '-std=c++11' 
[-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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 supports -fvisibility=hidden
+configure:11497: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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, 2024-01-29 07:19:56 (Mon, 29 Jan 2024) - 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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:13676: $? = 0
+configure:13676: result: yes
+configure:13684: checking for deflate in -lz
+configure:13707: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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:14348: result: yes, by using SDK macosx10.15
+configure:14362: checking for 
/Applications/Xcode12.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk
+configure:14365: result: yes
+configure:14381: checking which python to use
+configure:14390: result: compiling against system python (/usr/bin/python)
+configure:14397: result: compiling against system python (version 2.7)
+configure:14816: checking for Python.h
+configure:14816: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  
-I/Applications/Xcode12.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/python2.7
 conftest.c >&5
+configure:14816: $? = 0
+configure:14816: result: yes
+configure:14892: checking which lucene to use
+configure:15115: result: internal
+configure:15124: checking whether to build the MySQL Connector extension
+configure:15140: result: no
+configure:15380: checking which hsqldb to use
+configure:15445: result: internal
+configure:15454: checking which beanshell to use
+configure:15490: result: internal
+configure:15506: checking which saxon to use
+configure:15714: result: internal
+configure:15730: checking whether to enable support for JavaScript
+configure:15734: result: yes
+configure:15748: checking which libapr to use
+configure:15846: result: internal
+configure:15859: checking which libapr-util to use
+configure:15957: result: internal
+configure:15970: checking which libserf to use
+configure:16069: result: internal
+configure:16083: checking whether to enable support for CoinMP
+configure:16087: result: yes
+configure:16091: checking which coinmp to use
+configure:16276: result: internal
+configure:16295: checking which curl to use
+configure:16299: result: external
+configure:16305: checking for curl-config
+configure:16328: found /usr/local/bin/curl-config
+configure:16340: result: /usr/local/bin/curl-config
+configure:16353: checking whether curl is >= 7.13.1
+configure:16360: result: yes
+configure:16375: checking which mdds to use
+configure:16403: result: internal
+configure:16410: checking which boost to use
+configure:16486: result: internal
+configure:16493: checking which vigra to use
+configure:16521: result: internal
+configure:16528: checking which odbc headers to use
+configure:16545: result: internal
+configure:16552: checking whether to build XML Security support
+configure:16558: result: yes
+configure:16562: checking whether to build LDAP configuration backend
+configure:16566: result: yes
+configure:16579: checking which LDAP SDK to use
+configure:16582: result: OpenLDAP
+configure:16587: checking for ldap.h
+configure:16587: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -c -g -O2  conftest.c >&5
+configure:16587: $? = 0
+configure:16587: result: yes
+configure:16597: checking for ldap_simple_bind_s in -lldap
+configure:16620: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -o conftest -g -O2   conftest.c -lldap  -ljemalloc  >&5
+configure:16620: $? = 0
+configure:16630: result: yes
+configure:16644: checking for ldap_set_option in -lldap
+configure:16667: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -o conftest -g -O2   conftest.c -lldap  -lldap -ljemalloc  >&5
+configure:16667: $? = 0
+configure:16677: result: yes
+configure:16694: checking whether to build the internal NSS module
+configure:16699: result: yes
+configure:16739: checking which sane header to use
+configure:16755: result: internal
+configure:16762: checking which icu to use
+configure:17007: result: internal
+configure:17022: checking whether to enable graphite support
+configure:17133: result: no
+configure:17148: checking for /System/Library/Frameworks/AppKit.framework
+configure:17151: result: yes
+configure:18063: checking whether to link to Xrender
+configure:18071: result: no, dynamically open it
+configure:18075: checking which Xrender headers to use
+configure:18091: result: internal
+configure:18146: checking whether to enable RandR support
+configure:18289: result: no
+configure:18297: checking which libnss to use
+configure:18395: result: internal
+configure:18404: checking which libssl to use
+configure:18408: result: external
+configure:18416: checking for OPENSSL
+configure:18423: $PKG_CONFIG --exists --print-errors "openssl "
+configure:18426: $? = 0
+configure:18440: $PKG_CONFIG --exists --print-errors "openssl "
+configure:18443: $? = 0
+configure:18501: result: yes
+configure:18517: checking which redland library to use
+configure:18616: result: internal
+configure:18625: checking whether to build the Spell Checking component
+configure:18630: checking which libhunspell to use
+configure:18784: result: internal
+configure:18799: checking whether to build the Hyphenator component
+configure:18804: checking which libhyphen to use
+configure:18959: result: internal
+configure:18986: checking which mythes to use
+configure:19177: result: internal
+configure:19187: checking which libtextcat to use
+configure:19247: result: internal
+configure:19254: checking which libtextcat data directory to use
+configure:19265: result: internal
+configure:19328: checking for getopt
+configure:19328: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -o conftest -g -O2   conftest.c -lldap -lldap -ljemalloc  >&5
+configure:19328: $? = 0
+configure:19328: result: yes
+configure:19341: checking for readdir_r
+configure:19341: 
/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -o conftest -g -O2   conftest.c -lldap -lldap -ljemalloc  >&5
+configure:19341: $? = 0
+configure:19341: result: yes
+configure:19722: checking for bison
+configure:19745: found /usr/bin/bison
+configure:19757: result: /usr/bin/bison
+configure:19768: checking the bison version
+configure:19779: result: checked (/usr/bin/bison 2.3)
+configure:19788: checking for flex
+configure:19811: found /usr/bin/flex
+configure:19823: result: /usr/bin/flex
+configure:19836: checking for patch
+configure:19859: found /usr/local/bin/patch
+configure:19871: result: /usr/local/bin/patch
+configure:19894: checking whether /usr/local/bin/patch is GNU patch
+configure:19897: result: yes
+configure:19914: checking for gnucp
+configure:19952: result: no
+configure:19914: checking for cp
+configure:19937: found /bin/cp
+configure:19949: result: /bin/cp
+configure:19972: checking whether /bin/cp is GNU cp from coreutils with 
preserve= support
+configure:19978: result: no
+configure:19987: result: no GNU cp from coreutils found - using the system's 
cp command
+configure:20201: checking for zip
+configure:20224: found /usr/bin/zip
+configure:20236: result: /usr/bin/zip
+configure:20246: checking for unzip
+configure:20269: found /usr/bin/unzip
+configure:20281: result: /usr/bin/unzip
+configure:20384: checking which VCLplugs shall be built
+configure:20408: result: none
+configure:20417: checking whether to enable GConf support
+configure:20515: result: no
+configure:20522: checking whether to enable GNOME VFS support
+configure:20713: result: no
+configure:21280: checking whether to use cairo
+configure:21433: result: no
+configure:21451: checking whether to build the OpenGL Transitions component
+configure:21552: result: no
+configure:21559: checking whether to build the PDF Import extension
+configure:21671: result: no
+configure:21680: checking whether to build the Wiki Publisher extension
+configure:21683: result: yes
+configure:21685: checking for swext module
+configure:21688: result: OK
+configure:21703: checking which Servlet API Jar to use
+configure:21738: result: internal
+configure:21747: checking whether to build the Report Builder extension
+configure:22577: result: no
+configure:22598: checking which Apache commons-* libs to use
+configure:22937: result: internal
+configure:23314: checking whether to enable the lockdown pieces
+configure:23322: result: no
+configure:23327: checking whether to enable evolution 2 support
+configure:23426: result: no
+configure:23433: checking whether to include MathMLDTD
+configure:23441: result: yes
+configure:23452: checking whether to include category B fonts
+configure:23455: result: yes
+configure:23467: checking whether to include category A fonts
+configure:23470: result: yes
+configure:23482: checking whether any fonts are included
+configure:23487: result: yes
+configure:23498: checking whether to include PPDs
+configure:23501: result: yes
+configure:23511: checking whether to include AFMs
+configure:23514: result: yes
+configure:23527: checking whether and how to use Xinerama
+configure:23532: result: yes
+configure:23664: checking whether to build own version of libpng
+configure:23675: result: yes
+configure:23687: checking whether to build own version of libjpeg
+configure:23710: result: yes
+configure:23716: checking whether to trigger rat scan
+configure:23719: result: no
+configure:23915: checking for apache-ant
+configure:23954: result: no
+configure:23915: checking for ant
+configure:23939: found /usr/local/share/java/apache-ant-1.10/bin/ant
+configure:23951: result: /usr/local/share/java/apache-ant-1.10/bin/ant
+configure:23986: checking if /usr/local/share/java/apache-ant-1.10/bin/ant 
works
+configure:24011: /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:24014: $? = 0
+configure:24017: result: Ant works
+configure:24045: checking Ant lib directory
+configure:24072: result: Ant lib directory found.
+configure:24085: checking whether ant is >= 1.9.1
+configure: ant_version 1.10.9 
+configure: ant_version_major 1 
+configure: ant_version_minor 10 
+configure:24097: result: yes, 1.10.9
+configure:24104: checking whether ant supports mapper type="regexp"
+configure:24137: /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:24140: $? = 0
+configure:24143: result: yes
+configure:24240: checking for hamcrest-core
+configure:24296: result: no, skipping
+configure:24307: checking which languages to be built
+configure:24314: 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:24321: checking which languages have poor help localizations
+configure:24325: result: none
+configure:24333: checking which dictionaries to include
+configure:24337: result: ALL
+configure:24346: checking for additional 'intro' bitmaps
+configure:24351: result: none
+configure:24369: checking for additional 'about' bitmaps
+configure:24374: result: none
+configure:24393: checking for vendor
+configure:24396: result: not set
+configure:24406: checking for UNIX wrapper name
+configure:24409: result: not set
+configure:24418: checking whether to statically link to Gtk
+configure:24426: result: no
+configure:24431: checking whether to use layout dialogs
+configure:24439: result: no
+configure:24447: checking build verbosity
+configure:24452: result: high
+configure:24466: checking whether to enable dependency tracking
+configure:24473: result: yes
+configure:24490: checking solver path
+configure:24494: result: default
+configure:24513: writing config.status
+configure:24666: 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
+
+config.status:1116: creating set_soenv
+config.status:1116: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=x86_64-apple-darwin20.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-darwin20.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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -E'
+ac_cv_prog_CXXCPP='/Users/jim/src/asf/aoo-git/main/macos_c11 -E'
+ac_cv_prog_ac_ct_CC=/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
+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-darwin20.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='2024-01-29 07:19:56 (Mon, 29 Jan 2024) - Darwin x86_64'
+BUILD_WIN64=''
+BUILD_X64=''
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2=''
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang'
+CCACHE='not_found'
+CCNUMVER='001200000000'
+CCVER='12.0.0'
+CC_PATH='/Applications/Xcode12.4.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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr'
+CPP='/Applications/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
 -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/Xcode12.4.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/Xcode12.4.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/Xcode12.4.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/Xcode12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang'
+ac_ct_CXX=''
+bindir='${exec_prefix}/bin'
+build='x86_64-apple-darwin20.6.0'
+build_alias=''
+build_cpu='x86_64'
+build_os='darwin20.6.0'
+build_vendor='apple'
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host='x86_64-apple-darwin20.6.0'
+host_alias=''
+host_cpu='x86_64'
+host_os='darwin20.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-darwin20.6.0'
+target_alias=''
+target_cpu='x86_64'
+target_os='darwin20.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


Reply via email to