Author: jim Date: Mon Oct 23 18:10:23 2023 New Revision: 1913237 URL: http://svn.apache.org/viewvc?rev=1913237&view=rev Log: 4.1.15 build artifacts
Added: openoffice/devtools/build-scripts/4.1.15/unxmacos/build_aoo64bit_on_macos.sh (with props) openoffice/devtools/build-scripts/4.1.15/unxmacos/config.log Added: openoffice/devtools/build-scripts/4.1.15/unxmacos/build_aoo64bit_on_macos.sh URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.15/unxmacos/build_aoo64bit_on_macos.sh?rev=1913237&view=auto ============================================================================== --- openoffice/devtools/build-scripts/4.1.15/unxmacos/build_aoo64bit_on_macos.sh (added) +++ openoffice/devtools/build-scripts/4.1.15/unxmacos/build_aoo64bit_on_macos.sh Mon Oct 23 18:10:23 2023 @@ -0,0 +1,217 @@ +#!/usr/bin/env bash +# +# Build-script for AOO 4.1.x on OSX 10.13 +# +# OS: +# o OSX 10.13.6 (High Sierra) +# o jdk1.7.0_80.jdk +# o jdk1.8.0_181.jdk +# o XCode 7 w/ 10.11 SDK +# +# Local Changes: +# MacPorts: +# o gnutar (1.29) (symlinked gnutar to gtar) (symlinked to ~/bin) +# o perl5 (perl5.22) (symlinked to ~/bin) +# o p5-archive-* +# o p5-lwp-* +# o p5-xml-parser +# o autoconf (symlinked to ~/bin) +# o getopt (symlinked to ~/bin) +# o subversion +# o git +## +# /usr/local: +# o Apache ant 1.9.13 / 1.10.4 +# o dmake 4.12.3 (https://github.com/jimjag/dmake/archive/dmake-4.12.3.tar.gz) +# o epm 4.4.2 (https://github.com/jimjag/epm/archive/epm-4.4.2.tar.gz) +# o openssl (1.0.2t) +# https://www.openssl.org/source/openssl-1.0.2t.tar.gz +# $ export MACOSX_DEPLOYMENT_TARGET=10.7 +# $ ./Configure darwin64-x86_64-cc no-shared --prefix=/usr/local --openssldir=/usr/local ; make install +# o libxml2-2.9.9 (--prefix=/usr/local --enable-shared=no --without-iconv) +# o libxslt-1.1.33 (--prefix=/usr/local --enable-shared=no) +# o pkg-config 0.29.2 (--prefix=/usr/local) +# o GNU patch 2.7.6 (--prefix=/usr/local) +# +# Env: +# LC_CTYPE=en_US.UTF-8 +# LANG=en_US.UTF-8 +# LIBRARY_PATH=/usr/local/lib +# C_INCLUDE_PATH=/usr/local/include +# CPLUS_INCLUDE_PATH=/usr/local/include:/Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1 +# MACOSX_DEPLOYMENT_TARGET=10.7 +# PATH=/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:. +# +# Notes: +# o openssl required for serf; we build non-shared so all +# linkings are to the static libs +# +# o JDK 1.7 seems to work better; and it's always best to +# have just *one* version of the JDK installed. +# + +# +# Build options +# +AOO_MACOS_TARGET=10.7 +AOO_JAVA_VERSION=1.7 +AOO_ANT_VERSION=1.9 + +# +# 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" + +$(xcode-select -p | grep "Xcode7" -q) +if [ $? != 0 ]; then + echo "xcode-select must point to Xcode7." + exit 1 +fi + +AOPTS=`getopt -o vsjdtbqa:j:m: --long verbose,skip-config,just-config,build-src,dev,beta,quick,ant-version:,java-version:,macos-target: -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 ;; + -q | --quick ) AOO_BUILD_ALL="no"; shift ;; + -t | --build-src ) AOO_BUILD_SRC="yes"; 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 ;; + -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 ;; + -- ) 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..." + +if [ -z "$JUNIT_PATH" ] ; then + JUNIT_PATH=/usr/local/share/java/junit.jar +fi +if [ ! -e "$JUNIT_PATH" ] ; then + echo "JUNIT_PATH not found: $JUNIT_PATH" + exit 1 +fi +export JUNIT_PATH +echo "JUNIT_PATH is: $JUNIT_PATH..." + + +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 "" +sleep 5 +#Setup build Env +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:/Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1 +#export GXX_INCLUDE_PATH=/Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/c++/4.2.1 + +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 eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW" +#LANGS="en-US" + +if [ -e configure.in ]; then + AOO_CONF_T="configure.in" +else + AOO_CONF_T="configure.ac" +fi + +rm -rf ./solenv/inc/reporevision.lst + +if [ ! -e configure -o $AOO_CONF_T -nt configure ] ; then + echo "Running autoconf..." + autoconf || exit 1 +fi + +if [ "$AOO_SKIP_CONFIG" != "yes" ]; then + ( ./configure \ + --with-build-version="$(date +"%Y-%m-%d %H:%M:%S (%a, %d %b %Y)") - `uname -sm`${AOO_BUILD_VERSION}" \ + ${AOO_VERBOSE_BUILD} \ + --with-openldap \ + --enable-category-b \ + --enable-bundled-dictionaries \ + --enable-wiki-publisher \ + --with-jdk-home="$JAVA_HOME" \ + --with-ant-home="$ANT_HOME" \ + --with-junit="$JUNIT_PATH" \ + --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=internal \ + --with-lang="${LANGS}" \ + | tee config.out ) || exit 1 +fi + +if [ "$AOO_JUST_CONFIG" = "yes" ]; then + exit +fi +./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.1.15/unxmacos/build_aoo64bit_on_macos.sh ------------------------------------------------------------------------------ svn:executable = * Added: openoffice/devtools/build-scripts/4.1.15/unxmacos/config.log URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.1.15/unxmacos/config.log?rev=1913237&view=auto ============================================================================== --- openoffice/devtools/build-scripts/4.1.15/unxmacos/config.log (added) +++ openoffice/devtools/build-scripts/4.1.15/unxmacos/config.log Mon Oct 23 18:10:23 2023 @@ -0,0 +1,1572 @@ +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=2023-10-23 08:38:56 (Mon, 23 Oct 2023) - Darwin x86_64' --enable-verbose --with-openldap --enable-category-b --enable-bundled-dictionaries --enable-wiki-publisher --with-jdk-home=/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home --with-ant-home=/usr/local/share/java/apache-ant-1.9 --with-junit=/usr/local/share/java/junit.jar --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.7 --with-alloc=internal '--with-lang=ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW' + +## --------- ## +## Platform. ## +## --------- ## + +hostname = aoo-builder64-macos13.local +uname -m = x86_64 +uname -r = 17.7.0 +uname -s = Darwin +uname -v = Darwin Kernel Version 17.7.0: Fri Oct 30 13:34:27 PDT 2020; root:xnu-4570.71.82.8~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 17.7.0: Fri Oct 30 13:34:27 PDT 2020; root:xnu-4570.71.82.8~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: 278 tasks, 856 threads, 10 processors +Load average: 1.48, Mach factor: 8.50 +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /Users/jim/bin/ +PATH: /usr/local/bin/ +PATH: /usr/bin/ +PATH: /bin/ +PATH: /usr/sbin/ +PATH: /sbin/ +PATH: /opt/X11/bin/ +PATH: ./ + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:4383: looking for aux files: config.guess config.sub +configure:4396: trying ./ +configure:4425: ./config.guess found +configure:4425: ./config.sub found +configure:5892: checking whether configure is up-to-date +configure:5899: result: yes +configure:5926: checking for grep that handles long lines and -e +configure:5990: result: /usr/bin/grep +configure:5995: checking for egrep +configure:6063: result: /usr/bin/grep -E +configure:6072: checking for gawk +configure:6107: result: no +configure:6072: checking for mawk +configure:6107: result: no +configure:6072: checking for nawk +configure:6107: result: no +configure:6072: checking for awk +configure:6093: found /usr/bin/awk +configure:6104: result: awk +configure:6117: checking for awk +configure:6140: found /usr/bin/awk +configure:6152: result: /usr/bin/awk +configure:6168: checking for sed +configure:6191: found /usr/bin/sed +configure:6203: result: /usr/bin/sed +configure:6218: checking for solenv environment +configure:6222: result: default +configure:6249: checking for custom pack.lst +configure:6263: result: no +configure:6277: checking build system type +configure:6292: result: x86_64-apple-darwin17.7.0 +configure:6312: checking host system type +configure:6326: result: x86_64-apple-darwin17.7.0 +configure:6346: checking target system type +configure:6360: result: x86_64-apple-darwin17.7.0 +configure:6673: checking for pkg-config +configure:6696: found /usr/local/bin/pkg-config +configure:6708: result: /usr/local/bin/pkg-config +configure:6733: checking pkg-config is at least version 0.9.0 +configure:6736: result: yes +configure:6746: checking whether to enable crashdump feature +configure:6755: result: no +configure:6794: checking whether to turn warnings to errors +configure:6807: result: no +configure:6812: checking whether to do a debug build +configure:6823: result: no +configure:6828: checking whether to build with additional debug utilities +configure:6840: result: no, full product build +configure:6847: checking whether to include symbols into final build +configure:6869: result: no +configure:6874: checking whether to strip the solver or not. +configure:6893: result: yes +configure:6910: checking whether to enable category B components +configure:6931: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, beanshell, graphite, coinmp to be built +configure:6952: checking whether to enable the Online Update support +configure:6957: result: yes +configure:6967: checking whether to enable native CUPS support +configure:6971: result: yes +configure:6980: checking whether to enable fontconfig support +configure:6988: result: no +configure:7049: checking whether to use RPATH in shared libraries +configure:7056: result: yes +configure:7077: checking whether to use dicts from external paths +configure:7111: result: no +configure:7160: checking for bash +configure:7183: found /usr/local/bin/bash +configure:7195: result: /usr/local/bin/bash +configure:7210: checking gcc home +configure:7217: result: /usr +configure:7293: checking for gcc +configure:7325: result: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 +configure:7678: checking for C compiler version +configure:7687: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 --version >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +configure:7698: $? = 0 +configure:7687: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -v >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +configure:7698: $? = 0 +configure:7687: /Applications/Xcode7.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:7698: $? = 1 +configure:7687: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -qversion >&5 +clang: error: unknown argument: '-qversion' +clang: error: no input files +configure:7698: $? = 1 +configure:7687: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -version >&5 +clang: error: unknown argument: '-version' +clang: error: no input files +configure:7698: $? = 1 +configure:7718: checking whether the C compiler works +configure:7740: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 conftest.c >&5 +configure:7744: $? = 0 +configure:7794: result: yes +configure:7797: checking for C compiler default output file name +configure:7799: result: a.out +configure:7805: checking for suffix of executables +configure:7812: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest conftest.c >&5 +configure:7816: $? = 0 +configure:7839: result: +configure:7861: checking whether we are cross compiling +configure:7869: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest conftest.c >&5 +configure:7873: $? = 0 +configure:7880: ./conftest +configure:7884: $? = 0 +configure:7899: result: no +configure:7904: checking for suffix of object files +configure:7927: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c conftest.c >&5 +configure:7931: $? = 0 +configure:7953: result: o +configure:7957: checking whether the compiler supports GNU C +configure:7977: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c conftest.c >&5 +configure:7977: $? = 0 +configure:7987: result: yes +configure:7998: checking whether /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 accepts -g +configure:8019: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g conftest.c >&5 +configure:8019: $? = 0 +configure:8063: result: yes +configure:8083: checking for /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 option to enable C11 features +configure:8098: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:8098: $? = 0 +configure:8116: result: none needed +configure:8304: checking the GNU gcc compiler version +configure:8320: result: implicitly using CC=/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 +configure:8340: checking for -Bsymbolic-functions linker support +configure:8360: /Applications/Xcode7.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:8360: $? = 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:8370: result: not found +configure:8377: checking whether to enable pch feature +configure:8395: result: no +configure:8400: checking for GNU make +configure:8409: result: make +configure:8415: checking the GNU make version +configure:8420: result: make 4.3 +3+: +configure:8427: checking for dmake +configure:8488: looking for dmake at /usr/local/bin/dmake +configure:8491: result: using user provided dmake +configure:8514: checking whether the found dmake is the right dmake +configure:8524: result: yes +configure:8526: checking the dmake version +configure:8534: result: OK, >= 4.11 +configure:8554: checking for GNU or compatible BSD tar +configure:8563: result: gtar +configure:8644: checking for --hash-style=both linker support +configure:8663: /Applications/Xcode7.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:8663: $? = 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:8675: result: not found +configure:8753: checking for perl +configure:8776: found /Users/jim/bin/perl +configure:8788: result: /Users/jim/bin/perl +configure:8809: checking the Perl version +configure:8816: result: checked (perl 5) +configure:8823: checking for required Perl modules +configure:8826: result: all modules found +configure:9277: checking for stdio.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for stdlib.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for string.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for inttypes.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for stdint.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for strings.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for sys/stat.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for sys/types.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9277: checking for unistd.h +configure:9277: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:9277: $? = 0 +configure:9277: result: yes +configure:9305: checking for egrep +configure:9373: result: /usr/bin/grep -E +configure:9510: checking for C++ compiler version +configure:9519: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 --version >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +configure:9530: $? = 0 +configure:9519: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -v >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +clang: warning: argument unused during compilation: '-std=c++11' +configure:9530: $? = 0 +configure:9519: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -V >&5 +clang: error: argument to '-V' is missing (expected 1 value) +clang: error: no input files +configure:9530: $? = 1 +configure:9519: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -qversion >&5 +clang: error: unknown argument: '-qversion' +clang: error: no input files +configure:9530: $? = 1 +configure:9534: checking whether the compiler supports GNU C++ +configure:9554: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -c conftest.cpp >&5 +configure:9554: $? = 0 +configure:9564: result: yes +configure:9575: checking whether /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 accepts -g +configure:9596: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -c -g conftest.cpp >&5 +configure:9596: $? = 0 +configure:9640: result: yes +configure:9660: checking for /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 option to enable C++11 features +configure:9675: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -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:9675: $? = 0 +configure:9693: result: none needed +configure:9762: checking how to run the C++ preprocessor +configure:9784: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E conftest.cpp +configure:9784: $? = 0 +configure:9799: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E conftest.cpp +conftest.cpp:19:10: fatal error: 'ac_nonexistent.h' file not found +#include <ac_nonexistent.h> + ^ +1 error generated. +configure:9799: $? = 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:9826: result: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E +configure:9840: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E conftest.cpp +configure:9840: $? = 0 +configure:9855: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E conftest.cpp +conftest.cpp:19:10: fatal error: 'ac_nonexistent.h' file not found +#include <ac_nonexistent.h> + ^ +1 error generated. +configure:9855: $? = 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:9894: checking how to run the C preprocessor +configure:9920: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E conftest.c +configure:9920: $? = 0 +configure:9935: /Applications/Xcode7.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:9935: $? = 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:9962: result: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E +configure:9976: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E conftest.c +configure:9976: $? = 0 +configure:9991: /Applications/Xcode7.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:9991: $? = 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:10028: checking size of long +configure:10034: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c >&5 +configure:10034: $? = 0 +configure:10034: ./conftest +configure:10034: $? = 0 +configure:10049: result: 8 +configure:10059: checking whether byte ordering is bigendian +configure:10075: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:10075: $? = 0 +configure:10121: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:10121: $? = 0 +configure:10140: /Applications/Xcode7.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:10140: $? = 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:10274: result: no +configure:10303: checking for special C compiler options needed for large files +configure:10351: result: no +configure:10357: checking for _FILE_OFFSET_BITS value needed for large files +configure:10383: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:10383: $? = 0 +configure:10417: result: no +configure:10546: checking for cups/cups.h +configure:10546: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:10546: $? = 0 +configure:10546: result: yes +configure:10834: checking for C++ compiler version +configure:10843: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 --version >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +configure:10854: $? = 0 +configure:10843: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -v >&5 +Apple LLVM version 7.3.0 (clang-703.0.31) +Target: x86_64-apple-darwin17.7.0 +Thread model: posix +InstalledDir: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin +clang: warning: argument unused during compilation: '-std=c++11' +configure:10854: $? = 0 +configure:10843: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -V >&5 +clang: error: argument to '-V' is missing (expected 1 value) +clang: error: no input files +configure:10854: $? = 1 +configure:10843: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -qversion >&5 +clang: error: unknown argument: '-qversion' +clang: error: no input files +configure:10854: $? = 1 +configure:10858: checking whether the compiler supports GNU C++ +configure:10888: result: yes +configure:10899: checking whether /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 accepts -g +configure:10964: result: yes +configure:10984: checking for /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 option to enable C++11 features +configure:11017: result: none needed +configure:11084: checking the GNU C++ compiler version +configure:11090: result: checked (g++ 4.2.1) +configure:11145: checking for g++ include path +configure:11167: result: /usr/include/c++/4.2.1 +configure:11311: checking exception type +configure:11347: result: +configure:11455: checking what the default STL should be +configure:11467: checking whether /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 supports -fvisibility=hidden +configure:11482: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 -fvisibility=hidden conftest.c >&5 +configure:11482: $? = 0 +configure:11490: result: yes +configure:11501: checking whether we are allowed and able to use --ccache-skip +configure:11516: result: probing... +configure:11520: checking for ccache +configure:11556: result: not_found +configure:11565: not enabling --ccache-skip (ccache not found) +configure:11760: checking which memory allocator to use +configure:11930: result: internal +configure:11936: checking whether to add custom build version +configure:11940: result: yes, 2023-10-23 08:38:56 (Mon, 23 Oct 2023) - Darwin x86_64 +configure:11949: checking whether to build with Java support +configure:11952: result: yes +configure:12052: checking the installed JDK +configure:12134: result: checked (JDK 1.7.0_80) +configure:12482: checking for jawt lib name +configure:12652: result: -ljawt +configure:12658: checking whether to enable gcj aot compilation +configure:12728: result: no +configure:12744: checking whether to enable EPM for packing +configure:12747: result: yes +configure:12816: checking whether the found epm is the right epm +configure:12819: result: yes +configure:12824: checking epm version +configure:12829: result: OK, >= 3.7 +configure:12840: checking which package format to use +configure:12908: result: dmg +configure:13140: checking for gperf +configure:13163: found /usr/bin/gperf +configure:13175: result: /usr/bin/gperf +configure:13186: checking for gperf +configure:13221: result: /usr/bin/gperf +configure:13239: checking gperf version +configure:13242: result: OK +configure:13250: checking whether to build the stax +configure:13258: result: yes +configure:13263: checking whether to build the ODK +configure:13266: result: yes +configure:13269: checking for external/unowinreg/unowinreg.dll +configure:13277: result: found +configure:13659: checking whether to provide libstdc++/libgcc_s in the installset +configure:13667: result: yes +configure:13676: checking which zlib to use +configure:13680: result: external +configure:13683: checking for zlib.h +configure:13683: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:13683: $? = 0 +configure:13683: result: yes +configure:13691: checking for deflate in -lz +configure:13714: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c -lz >&5 +configure:13714: $? = 0 +configure:13724: result: yes +configure:13741: checking which jpeg to use +configure:13800: result: internal +configure:13807: checking which expat to use +configure:13869: result: internal +configure:13877: checking which cppunit to use +configure:13963: WARNING: not using cppunit +configure:14145: checking which libxslt to use +configure:14150: result: external +configure:14253: checking for xsltproc +configure:14276: found /usr/local/bin/xsltproc +configure:14289: result: /usr/local/bin/xsltproc +configure:14311: checking which libxml to use +configure:14316: result: external +configure:14430: checking checking SDK compatibility with OSX 10.7 +configure:14444: result: yes, by using SDK macosx10.11 +configure:14449: checking for /Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk +configure:14452: result: yes +configure:14466: checking which python to use +configure:14475: result: compiling against system python (/usr/bin/python) +configure:14482: result: compiling against system python (version 2.7) +configure:14752: checking for Python.h +configure:14752: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 -I/Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/python2.7 conftest.c >&5 +configure:14752: $? = 0 +configure:14752: result: yes +configure:14828: checking which lucene to use +configure:15051: result: internal +configure:15060: checking whether to build the MySQL Connector extension +configure:15076: result: no +configure:15316: checking which hsqldb to use +configure:15381: result: internal +configure:15390: checking which beanshell to use +configure:15426: result: internal +configure:15442: checking which saxon to use +configure:15650: result: internal +configure:15666: checking whether to enable support for JavaScript +configure:15670: result: yes +configure:15684: checking which libapr to use +configure:15782: result: internal +configure:15795: checking which libapr-util to use +configure:15893: result: internal +configure:15906: checking which libserf to use +configure:16005: result: internal +configure:16019: checking whether to enable support for CoinMP +configure:16023: result: yes +configure:16027: checking which coinmp to use +configure:16212: result: internal +configure:16231: checking which curl to use +configure:16235: result: external +configure:16241: checking for curl-config +configure:16264: found /usr/bin/curl-config +configure:16276: result: /usr/bin/curl-config +configure:16289: checking whether curl is >= 7.13.1 +configure:16296: result: yes +configure:16311: checking which mdds to use +configure:16339: result: internal +configure:16346: checking which boost to use +configure:16422: result: internal +configure:16429: checking which vigra to use +configure:16457: result: internal +configure:16464: checking which odbc headers to use +configure:16481: result: internal +configure:16488: checking whether to build XML Security support +configure:16494: result: yes +configure:16498: checking whether to build LDAP configuration backend +configure:16502: result: yes +configure:16515: checking which LDAP SDK to use +configure:16518: result: OpenLDAP +configure:16523: checking for ldap.h +configure:16523: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -c -g -O2 conftest.c >&5 +configure:16523: $? = 0 +configure:16523: result: yes +configure:16533: checking for ldap_simple_bind_s in -lldap +configure:16556: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c -lldap >&5 +configure:16556: $? = 0 +configure:16566: result: yes +configure:16580: checking for ldap_set_option in -lldap +configure:16603: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c -lldap -lldap >&5 +configure:16603: $? = 0 +configure:16613: result: yes +configure:16630: checking whether to build the internal NSS module +configure:16635: result: yes +configure:16675: checking which sane header to use +configure:16691: result: internal +configure:16698: checking which icu to use +configure:16943: result: internal +configure:16958: checking whether to enable graphite support +configure:17069: result: no +configure:17084: checking for /System/Library/Frameworks/AppKit.framework +configure:17087: result: yes +configure:17999: checking whether to link to Xrender +configure:18007: result: no, dynamically open it +configure:18011: checking which Xrender headers to use +configure:18027: result: internal +configure:18082: checking whether to enable RandR support +configure:18225: result: no +configure:18233: checking which libnss to use +configure:18331: result: internal +configure:18343: checking which libssl to use +configure:18347: result: external +configure:18355: checking for OPENSSL +configure:18362: $PKG_CONFIG --exists --print-errors "openssl " +configure:18365: $? = 0 +configure:18379: $PKG_CONFIG --exists --print-errors "openssl " +configure:18382: $? = 0 +configure:18440: result: yes +configure:18456: checking which redland library to use +configure:18555: result: internal +configure:18564: checking whether to build the Spell Checking component +configure:18569: checking which libhunspell to use +configure:18723: result: internal +configure:18738: checking whether to build the Hyphenator component +configure:18743: checking which libhyphen to use +configure:18898: result: internal +configure:18925: checking which mythes to use +configure:19116: result: internal +configure:19126: checking which libtextcat to use +configure:19186: result: internal +configure:19193: checking which libtextcat data directory to use +configure:19204: result: internal +configure:19267: checking for getopt +configure:19267: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c -lldap -lldap >&5 +configure:19267: $? = 0 +configure:19267: result: yes +configure:19280: checking for readdir_r +configure:19280: /Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -o conftest -g -O2 conftest.c -lldap -lldap >&5 +configure:19280: $? = 0 +configure:19280: result: yes +configure:19661: checking for bison +configure:19684: found /usr/bin/bison +configure:19696: result: /usr/bin/bison +configure:19707: checking the bison version +configure:19718: result: checked (/usr/bin/bison 2.3) +configure:19727: checking for flex +configure:19750: found /usr/bin/flex +configure:19762: result: /usr/bin/flex +configure:19775: checking for patch +configure:19798: found /usr/local/bin/patch +configure:19810: result: /usr/local/bin/patch +configure:19833: checking whether /usr/local/bin/patch is GNU patch +configure:19836: result: yes +configure:19853: checking for gnucp +configure:19891: result: no +configure:19853: checking for cp +configure:19876: found /bin/cp +configure:19888: result: /bin/cp +configure:19911: checking whether /bin/cp is GNU cp from coreutils with preserve= support +configure:19917: result: no +configure:19926: result: no GNU cp from coreutils found - using the system's cp command +configure:20140: checking for zip +configure:20163: found /usr/bin/zip +configure:20175: result: /usr/bin/zip +configure:20185: checking for unzip +configure:20208: found /usr/bin/unzip +configure:20220: result: /usr/bin/unzip +configure:20320: checking which VCLplugs shall be built +configure:20344: result: none +configure:20353: checking whether to enable GConf support +configure:20451: result: no +configure:20458: checking whether to enable GNOME VFS support +configure:20649: result: no +configure:21216: checking whether to use cairo +configure:21369: result: no +configure:21387: checking whether to build the OpenGL Transitions component +configure:21488: result: no +configure:21495: checking whether to build the PDF Import extension +configure:21607: result: no +configure:21616: checking whether to build the Wiki Publisher extension +configure:21619: result: yes +configure:21621: checking for swext module +configure:21624: result: OK +configure:21639: checking which Servlet API Jar to use +configure:21674: result: internal +configure:21683: checking whether to build the Report Builder extension +configure:22513: result: no +configure:22534: checking which Apache commons-* libs to use +configure:22855: result: internal +configure:23233: checking whether to enable the lockdown pieces +configure:23241: result: no +configure:23246: checking whether to enable evolution 2 support +configure:23345: result: no +configure:23352: checking whether to enable KDE address book support +configure:23405: result: no +configure:23411: checking whether to include MathMLDTD +configure:23419: result: yes +configure:23430: checking whether to include category B fonts +configure:23433: result: yes +configure:23445: checking whether to include category A fonts +configure:23448: result: yes +configure:23460: checking whether any fonts are included +configure:23465: result: yes +configure:23476: checking whether to include PPDs +configure:23479: result: yes +configure:23489: checking whether to include AFMs +configure:23492: result: yes +configure:23505: checking whether and how to use Xinerama +configure:23510: result: yes +configure:23642: checking whether to build own version of libpng +configure:23653: result: yes +configure:23665: checking whether to build own version of libjpeg +configure:23688: result: yes +configure:23694: checking whether to trigger rat scan +configure:23697: result: no +configure:23893: checking for jakarta-ant +configure:23932: result: no +configure:23893: checking for ant +configure:23917: found /usr/local/share/java/apache-ant-1.9/bin/ant +configure:23929: result: /usr/local/share/java/apache-ant-1.9/bin/ant +configure:23964: checking if /usr/local/share/java/apache-ant-1.9/bin/ant works +configure:23989: /usr/local/share/java/apache-ant-1.9/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:23992: $? = 0 +configure:23995: result: Ant works +configure:24023: checking Ant lib directory +configure:24050: result: Ant lib directory found. +configure:24063: checking whether ant is >= 1.7.0 +configure: ant_version 1.9.13 +configure: ant_version_major 1 +configure: ant_version_minor 9 +configure:24075: result: yes, 1.9.13 +configure:24082: checking whether ant supports mapper type="regexp" +configure:24115: /usr/local/share/java/apache-ant-1.9/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:24118: $? = 0 +configure:24121: result: yes +configure:24136: checking for JUnit 4 +configure:24157: result: /usr/local/share/java/junit.jar +configure:24169: checking which languages to be built +configure:24176: result: ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW +configure:24183: checking which languages have poor help localizations +configure:24187: result: none +configure:24195: checking which dictionaries to include +configure:24199: result: ALL +configure:24208: checking for additional 'intro' bitmaps +configure:24213: result: none +configure:24231: checking for additional 'about' bitmaps +configure:24236: result: none +configure:24255: checking for vendor +configure:24258: result: not set +configure:24268: checking for UNIX wrapper name +configure:24271: result: not set +configure:24280: checking whether to statically link to Gtk +configure:24288: result: no +configure:24293: checking whether to use layout dialogs +configure:24301: result: no +configure:24309: checking build verbosity +configure:24314: result: high +configure:24328: checking whether to enable dependency tracking +configure:24335: result: yes +configure:24352: checking solver path +configure:24356: result: default +configure:24375: writing config.status +configure:24528: 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-macos13.local + +config.status:1113: creating set_soenv +config.status:1113: creating Makefile +configure:25526: WARNING: unrecognized options: --with-macosx-target + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=x86_64-apple-darwin17.7.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_CPPUNIT_CFLAGS_set= +ac_cv_env_CPPUNIT_CFLAGS_value= +ac_cv_env_CPPUNIT_LIBS_set= +ac_cv_env_CPPUNIT_LIBS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_CXXCPP_set= +ac_cv_env_CXXCPP_value= +ac_cv_env_CXXFLAGS_set= +ac_cv_env_CXXFLAGS_value= +ac_cv_env_CXX_set= +ac_cv_env_CXX_value= +ac_cv_env_DBUS_CFLAGS_set= +ac_cv_env_DBUS_CFLAGS_value= +ac_cv_env_DBUS_LIBS_set= +ac_cv_env_DBUS_LIBS_value= +ac_cv_env_FREETYPE_CFLAGS_set= +ac_cv_env_FREETYPE_CFLAGS_value= +ac_cv_env_FREETYPE_LIBS_set= +ac_cv_env_FREETYPE_LIBS_value= +ac_cv_env_GCONF_CFLAGS_set= +ac_cv_env_GCONF_CFLAGS_value= +ac_cv_env_GCONF_LIBS_set= +ac_cv_env_GCONF_LIBS_value= +ac_cv_env_GIO_CFLAGS_set= +ac_cv_env_GIO_CFLAGS_value= +ac_cv_env_GIO_LIBS_set= +ac_cv_env_GIO_LIBS_value= +ac_cv_env_GNOMEVFS_CFLAGS_set= +ac_cv_env_GNOMEVFS_CFLAGS_value= +ac_cv_env_GNOMEVFS_LIBS_set= +ac_cv_env_GNOMEVFS_LIBS_value= +ac_cv_env_GOBJECT_CFLAGS_set= +ac_cv_env_GOBJECT_CFLAGS_value= +ac_cv_env_GOBJECT_LIBS_set= +ac_cv_env_GOBJECT_LIBS_value= +ac_cv_env_GRAPHITE_CFLAGS_set= +ac_cv_env_GRAPHITE_CFLAGS_value= +ac_cv_env_GRAPHITE_LIBS_set= +ac_cv_env_GRAPHITE_LIBS_value= +ac_cv_env_GSTREAMER_CFLAGS_set= +ac_cv_env_GSTREAMER_CFLAGS_value= +ac_cv_env_GSTREAMER_LIBS_set= +ac_cv_env_GSTREAMER_LIBS_value= +ac_cv_env_GTHREAD_CFLAGS_set= +ac_cv_env_GTHREAD_CFLAGS_value= +ac_cv_env_GTHREAD_LIBS_set= +ac_cv_env_GTHREAD_LIBS_value= +ac_cv_env_GTK_2_10_CFLAGS_set= +ac_cv_env_GTK_2_10_CFLAGS_value= +ac_cv_env_GTK_2_10_LIBS_set= +ac_cv_env_GTK_2_10_LIBS_value= +ac_cv_env_GTK_CFLAGS_set= +ac_cv_env_GTK_CFLAGS_value= +ac_cv_env_GTK_LIBS_set= +ac_cv_env_GTK_LIBS_value= +ac_cv_env_HUNSPELL_CFLAGS_set= +ac_cv_env_HUNSPELL_CFLAGS_value= +ac_cv_env_HUNSPELL_LIBS_set= +ac_cv_env_HUNSPELL_LIBS_value= +ac_cv_env_LDFLAGS_set= +ac_cv_env_LDFLAGS_value= +ac_cv_env_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_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-darwin17.7.0 +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.9/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/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=/Users/jim/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/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E' +ac_cv_prog_CXXCPP='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -E' +ac_cv_prog_ac_ct_CC='/Applications/Xcode7.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-darwin17.7.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='' +ANT='/usr/local/share/java/apache-ant-1.9/bin/ant' +ANT_HOME='/usr/local/share/java/apache-ant-1.9' +ANT_LIB='/usr/local/share/java/apache-ant-1.9/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 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='2023-10-23 08:38:56 (Mon, 23 Oct 2023) - Darwin x86_64' +BUILD_X64='' +BUNDLED_EXTENSION_BLOBS='' +BUNDLED_PREREG_EXTENSIONS='' +BZIP2='' +CAIRO_CFLAGS='' +CAIRO_LIBS='' +CC='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64' +CCACHE='not_found' +CC_PATH='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/' +CFLAGS='-g -O2' +COINMP_CFLAGS='' +COINMP_LIBS='' +COMEX='' +COMMONS_CODEC_JAR='' +COMMONS_HTTPCLIENT_JAR='' +COMMONS_LANG_JAR='' +COMMONS_LOGGING_JAR='' +COMPATH='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr' +COM_IS='' +CPP='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -E' +CPPFLAGS='' +CPPUNIT_CFLAGS='' +CPPUNIT_LIBS='' +CRYPT_LINK='' +CSC_PATH='' +CURLCONFIG='/usr/bin/curl-config' +CURL_CFLAGS='' +CURL_LIBS='-lcurl' +CUSTOM_PACK_LIST='' +CXX='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11' +CXXCPP='/Applications/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -std=c++11 -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_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_KAB='' +ENABLE_KDE4='' +ENABLE_KDE='' +ENABLE_LAYOUT='FALSE' +ENABLE_LOCKDOWN='' +ENABLE_MEDIAWIKI='YES' +ENABLE_MYSQLC='NO' +ENABLE_NSS_MODULE='YES' +ENABLE_ONLINE_UPDATE='YES' +ENABLE_OPENGL='' +ENABLE_PCH='' +ENABLE_PDFIMPORT='NO' +ENABLE_RANDR='' +ENABLE_REPORTBUILDER='NO' +ENABLE_RPATH='yes' +ENABLE_STATIC_GTK='FALSE' +ENABLE_SYMBOLS='' +ENABLE_SYSTRAY_GTK='' +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='40201' +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='' +GXX_INCLUDE_PATH='/usr/include/c++/4.2.1' +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.7.0_80.jdk/Contents/Home/bin/javac' +JAVADOC='/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/javadoc' +JAVAFLAGS='-source 1.5 -target 1.5' +JAVAIFLAGS='' +JAVAINTERPRETER='/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/java' +JAVA_HOME='/Library/Java/JavaVirtualMachines/jdk1.7.0_80.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 ' +LIBSERIALIZER_JAR='' +LIBXML_CFLAGS='-I/usr/local/include/libxml2' +LIBXML_JAR='' +LIBXML_LIBS='-L/usr/local/lib -lxml2 -lz -lpthread -lm' +LIBXSLT_CFLAGS='-I/usr/local/include -I/usr/local/include/libxml2' +LIBXSLT_LIBS='-L/usr/local/lib -lxslt -lxml2' +LOCAL_SOLENV='DEFAULT' +LOCAL_SOLVER='DEFAULT' +LTLIBOBJS='' +LUCENE_ANALYZERS_JAR='' +LUCENE_CORE_JAR='' +MACOSX_DEPLOYMENT_TARGET='10.7' +MACOSX_SDK_PATH='/Applications/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.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='/usr/local/share/java/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='/Users/jim/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/Xcode7.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.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' +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='AOO4115' +SYSTEM_APACHE_COMMONS='NO' +SYSTEM_APR='NO' +SYSTEM_APR_UTIL='NO' +SYSTEM_BOOST='NO' +SYSTEM_BSH='NO' +SYSTEM_CAIRO='' +SYSTEM_COINMP='NO' +SYSTEM_CPPUNIT='NO' +SYSTEM_CURL='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='4115' +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_CPPUNIT='' +WITH_DICT=',ALL,' +WITH_FONTS='YES' +WITH_LANG='ast bg ca ca-XR ca-XV cs da de el en-GB en-US es eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW' +WITH_LDAP='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/Xcode7.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64' +ac_ct_CXX='' +bindir='${exec_prefix}/bin' +build='x86_64-apple-darwin17.7.0' +build_alias='' +build_cpu='x86_64' +build_os='darwin17.7.0' +build_vendor='apple' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE}' +dvidir='${docdir}' +exec_prefix='${prefix}' +host='x86_64-apple-darwin17.7.0' +host_alias='' +host_cpu='x86_64' +host_os='darwin17.7.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-darwin17.7.0' +target_alias='' +target_cpu='x86_64' +target_os='darwin17.7.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_LDAP_H 1 +#define HAVE_LIBLDAP 1 +#define HAVE_LIBLDAP 1 +#define HAVE_GETOPT 1 +#define HAVE_READDIR_R 1 + +configure: exit 0