You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2019/03/22 22:52:47 UTC

svn commit: r1856088 - in /openoffice/devtools/build-scripts/4.2.0-dev/wntmsci: Jim/ Jim/build_aoo64bit_on_win7.sh Jim/config.log Pack-dev.lst ReadMe.txt

Author: mseidel
Date: Fri Mar 22 22:52:47 2019
New Revision: 1856088

URL: http://svn.apache.org/viewvc?rev=1856088&view=rev
Log:
Updated build environment

Added:
    openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/
    openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh   (with props)
    openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/config.log
    openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Pack-dev.lst
    openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt   (with props)

Added: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh?rev=1856088&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh (added)
+++ openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh Fri Mar 22 22:52:47 2019
@@ -0,0 +1,140 @@
+#!/bin/bash
+
+#
+# Parse options
+#
+AOO_SKIP_CONFIG=
+AOO_VERBOSE_BUILD=
+AOO_BUILD_TYPE="Community Build"
+AOO_BUILD_VERSION=
+
+while true; do
+  case "$1" in
+    "--verbose" ) AOO_VERBOSE_BUILD="--enable-verbose"; shift ;;
+    "--skip-config" ) AOO_SKIP_CONFIG="yes"; shift ;;
+    "--dev" ) AOO_BUILD_TYPE="Development Build"; AOO_BUILD_VERSION=" [${AOO_BUILD_TYPE}]"; shift ;;
+    "--" ) shift; break ;;
+    "" ) break ;;
+    * ) echo "unknown option: $1"; shift ;;
+  esac
+done
+
+if [ ! -d ../main -o ! -d sal ] ; then
+	echo "CHDIR into AOO's main/ directory first!"
+	exit 1
+fi
+
+SDK_HOME="/cygdrive/c/MicrosoftSDKs/Windows/v7.0"
+if [ ! -d "$SDK_HOME" ]; then
+	echo "Can't find SDK_HOME: $SDK_HOME!"
+	exit 1
+fi
+echo "Setting SDK_HOME to $SDK_HOME..."
+export SDK_HOME
+
+JDK_HOME="/cygdrive/c/Java/jdk1.8.0_144"
+if [ ! -d "$JDK_HOME" ]; then
+	echo "Can't find JDK_HOME: $JDK_HOME!"
+	exit 1
+fi
+echo "Setting JDK_HOME to $JDK_HOME..."
+export JDK_HOME
+JAVA_HOME="$JDK_HOME"
+export JAVA_HOME
+
+ANT_HOME="/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9"
+if [ ! -d "$ANT_HOME" ]; then
+	echo "Can't find ANT_HOME: $ANT_HOME!"
+	exit 1
+fi
+echo "Setting ANT_HOME to $ANT_HOME..."
+export ANT_HOME
+
+VSTUDIO_HOME=`cygpath -m -s 'C:\Program Files (x86)\Microsoft Visual Studio 9.0'`
+if [ ! -d "$VSTUDIO_HOME" ]; then
+	echo "Can't find VSTUDIO_HOME: $VSTUDIO_HOME!"
+	exit 1
+fi
+echo "Setting VSTUDIO_HOME to $VSTUDIO_HOME..."
+export VSTUDIO_HOME
+
+WINDDK_HOME="/cygdrive/c/WinDDK/7600.16385.1"
+if [ ! -d "$WINDDK_HOME" ]; then
+	echo "Can't find WINDDK_HOME: $WINDDK_HOME!"
+	exit 1
+fi
+echo "Setting WINDDK_HOME to $WINDDK_HOME..."
+
+DIRECTX_HOME="/cygdrive/c/Microsoft_DirectX_SDK_June_2010"
+if [ ! -d "$DIRECTX_HOME" ]; then
+	echo "Can't find DIRECTX_HOME: $DIRECTX_HOME!"
+	exit 1
+fi
+echo "Setting DIRECTX_HOME to $DIRECTX_HOME..."
+
+NSIS_HOME="/cygdrive/c/NSIS"
+if [ ! -d "$NSIS_HOME" ]; then
+	echo "Can't find NSIS_HOME: $NSIS_HOME!"
+	exit 1
+fi
+echo "Setting NSIS_HOME to $NSIS_HOME..."
+
+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"
+
+if [ -e configure.in ]; then
+    AOO_CONF_T="configure.in"
+else
+    AOO_CONF_T="configure.ac"
+fi
+if [ ! -e configure -o $AOO_CONF_T -nt configure ] ; then
+	echo "Running autoconf..."
+	autoconf || exit 1
+fi
+
+if [ "$AOO_SKIP_CONFIG" != "yes" ]; then
+    ( ./configure   \
+	--with-build-version="$(date +"%Y-%m-%d %H:%M:%S (%a, %d %b %Y)") - `uname -sm`${AOO_BUILD_VERSION}" \
+	${AOO_VERBOSE_BUILD} \
+	--with-vendor="Apache OpenOffice ${AOO_BUILD_TYPE}" \
+	--enable-wiki-publisher \
+	--enable-category-b \
+	--enable-beanshell \
+	--enable-bundled-dictionaries \
+	--with-jdk-home="$JDK_HOME" \
+	--with-ant-home="$ANT_HOME" \
+	--with-lang="${LANGS}" \
+	--with-frame-home="$SDK_HOME" \
+	--with-psdk-home="$SDK_HOME" \
+	--with-midl-path="$SDK_HOME/bin" \
+	--with-cl-home="$VSTUDIO_HOME/VC" \
+	--with-asm-home="$VSTUDIO_HOME" \
+	--with-mspdb-path="$VSTUDIO/Common7/IDE" \
+	--with-csc-path="$VSTUDIO_HOME/SDK/v3.5" \
+	--with-dmake-path=/usr/local/bin/dmake \
+	--without-stlport \
+	--without-junit \
+	--with-directx-home="$DIRECTX_HOME" \
+	--enable-win-x64-shellext \
+	--with-mozilla-build="/opt/mozilla-build" \
+	--with-atl-include-dir="$WINDDK_HOME/inc/atl71" \
+	--with-atl-lib-dir="$WINDDK_HOME/lib/atl/i386" \
+	--with-mfc-include-dir="$WINDDK_HOME/inc/mfc42" \
+	--with-mfc-lib-dir="$WINDDK_HOME/lib/mfc/i386" \
+	--disable-odk  \
+	| tee config.out ) || exit 1
+fi
+#exit 0
+./bootstrap || exit 1
+source ./winenv.set.sh || exit 1
+cd instsetoo_native
+perl "$SOLARENV/bin/build.pl" --all -- -P4 || exit 1
+cd util
+dmake -P2 ooolanguagepack || exit 1
+dmake -P2 sdkoo_en-US || exit 1
+
+date "+Build ended at %H:%M:%S"

Propchange: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/build_aoo64bit_on_win7.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/config.log
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/config.log?rev=1856088&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/config.log (added)
+++ openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Jim/config.log Fri Mar 22 22:52:47 2019
@@ -0,0 +1,2218 @@
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by configure, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  $ ./configure --with-build-version=2017-11-25 16:40:24 (Sat, 25 Nov 2017) - CYGWIN_NT-6.1-WOW i686 [Development Build] --with-vendor=Apache OpenOffice Development Build --enable-wiki-publisher --enable-category-b --enable-bundled-dictionaries --with-jdk-home=/cygdrive/c/Java/jdk1.8.0_144 --with-ant-home=/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9 --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-frame-home=/cygdrive/c/MicrosoftSDKs/Windows/v7.0 --with-psdk-home=/cygdrive/c/MicrosoftSDKs/Windows/v7.0 --with-midl-path=/cygdrive/c/MicrosoftSDKs/Windows/v7.0/bin --with-cl-home=C:/PROGRA~2/MICROS~1.0/VC --with-asm-home=C:/PROGRA~2/MICROS~1.0 --with-mspdb-path=/Common7/IDE --with-csc-path=C:/PROGRA~2/MICROS~1.0/SDK/v3.5 --with-dmake-path=/usr/local/bin/dmake --without-stlport --without-junit --with-directx-home=/cygdrive/c/Microsoft_DirectX_SDK_June_2010 --enable-win-x
 64-shellext --with-mozilla-build=/opt/mozilla-build --with-atl-include-dir=/cygdrive/c/WinDDK/7600.16385.1/inc/atl71 --with-atl-lib-dir=/cygdrive/c/WinDDK/7600.16385.1/lib/atl/i386 --with-mfc-include-dir=/cygdrive/c/WinDDK/7600.16385.1/inc/mfc42 --with-mfc-lib-dir=/cygdrive/c/WinDDK/7600.16385.1/lib/mfc/i386 --disable-odk
+
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = aoobuilder
+uname -m = i686
+uname -r = 2.9.0(0.318/5/3)
+uname -s = CYGWIN_NT-6.1-WOW
+uname -v = 2017-09-12 10:41
+
+/usr/bin/uname -p = unknown
+/bin/uname -X     = unknown
+
+/bin/arch              = i686
+/usr/bin/arch -k       = unknown
+/usr/convex/getsysinfo = unknown
+/usr/bin/hostinfo      = unknown
+/bin/machine           = unknown
+/usr/bin/oslevel       = unknown
+/bin/universe          = unknown
+
+PATH: /Users/jim/perl5/bin
+PATH: /home/jim/bin
+PATH: /usr/local/bin
+PATH: /usr/bin
+PATH: /cygdrive/c/ProgramData/Oracle/Java/javapath
+PATH: /cygdrive/c/Windows/system32
+PATH: /cygdrive/c/Windows
+PATH: /cygdrive/c/Windows/System32/Wbem
+PATH: /cygdrive/c/Windows/System32/WindowsPowerShell/v1.0
+PATH: /cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/Tools/Binn
+PATH: /cygdrive/c/Program Files (x86)/Microsoft SQL Server/100/DTS/Binn
+PATH: .
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+configure:5141: checking whether configure is up-to-date
+configure:5148: result: yes
+configure:5175: checking for grep that handles long lines and -e
+configure:5233: result: /usr/bin/grep
+configure:5238: checking for egrep
+configure:5300: result: /usr/bin/grep -E
+configure:5312: checking for gawk
+configure:5342: result: no
+configure:5312: checking for mawk
+configure:5342: result: no
+configure:5312: checking for nawk
+configure:5342: result: no
+configure:5312: checking for awk
+configure:5328: found /usr/bin/awk
+configure:5339: result: awk
+configure:5352: checking for awk
+configure:5370: found /usr/bin/awk
+configure:5382: result: /usr/bin/awk
+configure:5398: checking for sed
+configure:5416: found /usr/bin/sed
+configure:5428: result: /usr/bin/sed
+configure:5443: checking for solenv environment
+configure:5447: result: default
+configure:5474: checking for custom pack.lst
+configure:5488: result: no
+configure:5528: checking build system type
+configure:5542: result: i686-pc-cygwin
+configure:5562: checking host system type
+configure:5575: result: i686-pc-cygwin
+configure:5595: checking target system type
+configure:5608: result: i686-pc-cygwin
+configure:5643: checking Cygwin version
+configure:5646: result: 2.9.0(0.318/5/3)
+configure:5916: checking for pkg-config
+configure:5934: found /usr/bin/pkg-config
+configure:5946: result: /usr/bin/pkg-config
+configure:5971: checking pkg-config is at least version 0.9.0
+configure:5974: result: yes
+configure:5984: checking whether to enable crashdump feature
+configure:5993: result: no
+configure:6003: checking whether to use the standard non-optimizing compiler
+configure:6007: result: no
+configure:6018: checking whether to build/use the Windows 64bit shell extensions
+configure:6026: result: yes
+configure:6032: checking whether to turn warnings to errors
+configure:6045: result: no
+configure:6050: checking whether to do a debug build
+configure:6061: result: no
+configure:6066: checking whether to build with additional debug utilities
+configure:6078: result: no, full product build
+configure:6085: checking whether to include symbols into final build
+configure:6107: result: no
+configure:6112: checking whether to strip the solver or not.
+configure:6131: result: yes
+configure:6148: checking whether to enable category B components
+configure:6167: result: yes: allow modules nss, hunspell, hyphen, saxon, rhino, beanshell, graphite, coinmp to be built
+configure:6187: checking whether to enable the Online Update support
+configure:6192: result: yes
+configure:6201: checking whether to enable unit tests
+configure:6206: result: yes
+configure:6215: checking whether to enable native CUPS support
+configure:6223: result: no
+configure:6228: checking whether to enable fontconfig support
+configure:6236: result: no
+configure:6253: checking whether to use DirectX
+configure:6258: result: yes
+configure:6267: checking whether to use ActiveX
+configure:6271: result: yes
+configure:6279: checking whether to use ATL
+configure:6283: result: yes
+configure:6297: checking whether to use RPATH in shared libraries
+configure:6304: result: yes
+configure:6325: checking whether to use dicts from external paths
+configure:6359: result: no
+configure:6369: checking Windows build environment sanity
+configure:6389: result: ok
+configure:6395: checking for cygwin gcc/g++
+configure:6398: result: found
+configure:6408: checking for bash
+configure:6426: found /usr/bin/bash
+configure:6438: result: /usr/bin/bash
+configure:6453: checking gcc home
+configure:6460: result: /usr
+configure:7413: checking whether to enable pch feature
+configure:7431: result: no
+configure:7436: checking for GNU make
+configure:7445: result: make
+configure:7451: checking the GNU make version
+configure:7456: result: make 4.2.1
+3+:
+configure:7463: checking for dmake
+configure:7519: looking for dmake at /usr/local/bin/dmake
+configure:7522: result: using user provided dmake
+configure:7545: checking whether the found dmake is the right dmake
+configure:7555: result: yes
+configure:7557: checking the dmake version
+configure:7565: result: OK, >= 4.11
+configure:7585: checking for GNU or compatible BSD tar
+configure:7594: result: tar
+configure:7773: checking for perl
+configure:7791: found /usr/bin/perl
+configure:7803: result: /usr/bin/perl
+configure:7824: checking the Perl version
+configure:7831: result: checked (perl 5)
+configure:7838: checking for required Perl modules
+configure:7846: result: all modules found
+configure:7876: checking for friendly registry keys
+configure:7887: result: done
+configure:7997: checking the Microsoft C/C++ Compiler
+configure:8048: result: found (/cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe)
+configure:8052: checking the Version of Microsoft C/C++ Compiler
+configure:8063: result: found Compiler version 001500003072 in "Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
"
+configure:8068: result: found .NET 2008 / VS 9.0.
+configure:8100: checking for midl.exe
+configure:8133: result: no
+configure:8171: checking for csc.exe
+configure:8204: result: no
+configure:8230: checking .NET Framework
+configure:8255: result: found
+configure:9059: checking for sys/types.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 0
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <sys/types.h>
+configure:9059: result: no
+configure:9059: checking for sys/stat.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 0
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <sys/stat.h>
+configure:9059: result: no
+configure:9059: checking for stdlib.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 0
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <stdlib.h>
+configure:9059: result: no
+configure:9059: checking for string.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 0
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <string.h>
+configure:9059: result: no
+configure:9059: checking for memory.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 0
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <memory.h>
+configure:9059: result: no
+configure:9059: checking for strings.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(43) : fatal error C1083: Cannot open include file: 'strings.h': No such file or directory
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 2
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <strings.h>
+configure:9059: result: no
+configure:9059: checking for inttypes.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(43) : fatal error C1083: Cannot open include file: 'inttypes.h': No such file or directory
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 2
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <inttypes.h>
+configure:9059: result: no
+configure:9059: checking for stdint.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(43) : fatal error C1083: Cannot open include file: 'stdint.h': No such file or directory
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 2
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <stdint.h>
+configure:9059: result: no
+configure:9059: checking for unistd.h
+configure:9059: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(43) : fatal error C1083: Cannot open include file: 'unistd.h': No such file or directory
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9059: $? = 2
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| 
+| #include <unistd.h>
+configure:9059: result: no
+configure:9075: checking size of long
+configure:9080: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -o conftest    conftest.c  >&5
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
+conftest.c
+Microsoft (R) Incremental Linker Version 9.00.30729.01
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+/out:conftest.exe 
+/out:conftest.exe 
+conftest.obj 
+LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'
+configure:9080: $? = 2
+configure: program exited with status 2
+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>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| static long int longval () { return (long int) (sizeof (long)); }
+| static unsigned long int ulongval () { return (long int) (sizeof (long)); }
+| #include <stdio.h>
+| #include <stdlib.h>
+| int
+| main ()
+| {
+| 
+|   FILE *f = fopen ("conftest.val", "w");
+|   if (! f)
+|     return 1;
+|   if (((long int) (sizeof (long))) < 0)
+|     {
+|       long int i = longval ();
+|       if (i != ((long int) (sizeof (long))))
+| 	return 1;
+|       fprintf (f, "%ld", i);
+|     }
+|   else
+|     {
+|       unsigned long int i = ulongval ();
+|       if (i != ((long int) (sizeof (long))))
+| 	return 1;
+|       fprintf (f, "%lu", i);
+|     }
+|   /* Do not output a trailing newline, as this causes \r\n confusion
+|      on some platforms.  */
+|   return ferror (f) || fclose (f) != 0;
+| 
+|   ;
+|   return 0;
+| }
+configure:9094: result: 0
+configure:9106: checking whether byte ordering is bigendian
+configure:9121: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(11) : error C2061: syntax error : identifier 'a'
+conftest.c(11) : error C2059: syntax error : ';'
+conftest.c(11) : error C2061: syntax error : identifier 'capable'
+conftest.c(11) : error C2059: syntax error : ';'
+conftest.c(13) : error C2054: expected '(' to follow 'compiler'
+conftest.c(13) : error C2085: 'dummy' : not in formal parameter list
+conftest.c(15) : fatal error C1004: unexpected end-of-file found
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9121: $? = 2
+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 SIZEOF_LONG 0
+| /* end confdefs.h.  */
+| #ifndef __APPLE_CC__
+| 	       not a universal capable compiler
+| 	     #endif
+| 	     typedef int dummy;
+| 
+configure:9166: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(11) : fatal error C1083: Cannot open include file: 'sys/param.h': No such file or directory
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9166: $? = 2
+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 SIZEOF_LONG 0
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+| 	     #include <sys/param.h>
+| 
+| int
+| main ()
+| {
+| #if ! (defined BYTE_ORDER && defined BIG_ENDIAN 		     && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN 		     && LITTLE_ENDIAN)
+| 	      bogus endian macros
+| 	     #endif
+| 
+|   ;
+|   return 0;
+| }
+configure:9210: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(16) : error C2065: 'bogus' : undeclared identifier
+conftest.c(16) : error C2146: syntax error : missing ';' before identifier 'endian'
+conftest.c(16) : error C2065: 'endian' : undeclared identifier
+conftest.c(16) : error C2146: syntax error : missing ';' before identifier 'macros'
+conftest.c(19) : error C2065: 'macros' : undeclared identifier
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9210: $? = 2
+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 SIZEOF_LONG 0
+| /* end confdefs.h.  */
+| #include <limits.h>
+| 
+| int
+| main ()
+| {
+| #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
+| 	      bogus endian macros
+| 	     #endif
+| 
+|   ;
+|   return 0;
+| }
+configure:9301: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -o conftest    conftest.c  >&5
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
+conftest.c
+Microsoft (R) Incremental Linker Version 9.00.30729.01
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+/out:conftest.exe 
+/out:conftest.exe 
+conftest.obj 
+LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'
+configure:9301: $? = 2
+configure: program exited with status 2
+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 SIZEOF_LONG 0
+| /* end confdefs.h.  */
+| #include <stdio.h>
+| #ifdef HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #ifdef HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #ifdef STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # ifdef HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #ifdef HAVE_STRING_H
+| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #ifdef HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #ifdef HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #endif
+| #ifdef HAVE_STDINT_H
+| # include <stdint.h>
+| #endif
+| #ifdef HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| int
+| main ()
+| {
+| 
+| 	     /* Are we little or big endian?  From Harbison&Steele.  */
+| 	     union
+| 	     {
+| 	       long int l;
+| 	       char c[sizeof (long int)];
+| 	     } u;
+| 	     u.l = 1;
+| 	     return u.c[sizeof (long int) - 1] == 1;
+| 
+|   ;
+|   return 0;
+| }
+configure:9312: result: yes
+configure:9340: checking for special C compiler options needed for large files
+configure:9370: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9370: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9375: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -n32 -c   conftest.c >&5
+conftest.c
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+cl : Command line warning D9002 : ignoring unknown option '-n32'
+configure:9375: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9385: result: no
+configure:9391: checking for _FILE_OFFSET_BITS value needed for large files
+configure:9416: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9416: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9440: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(20) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9440: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #define _FILE_OFFSET_BITS 64
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9448: result: unknown
+configure:9460: checking for _LARGE_FILES value needed for large files
+configure:9485: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(17) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9485: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9509: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -c   conftest.c >&5
+conftest.c
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(18) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(19) : warning C4293: '<<' : shift count negative or too big, undefined behavior
+conftest.c(20) : error C2118: negative subscript
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+configure:9509: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| #define _LARGE_FILES 1
+| #include <sys/types.h>
+|  /* Check that off_t can represent 2**63 - 1 correctly.
+|     We can't simply define LARGE_OFF_T to be 9223372036854775807,
+|     since some C++ compilers masquerading as C compilers
+|     incorrectly reject 9223372036854775807.  */
+| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
+| 		       && LARGE_OFF_T % 2147483647 == 1)
+| 		      ? 1 : -1];
+| int
+| main ()
+| {
+| 
+|   ;
+|   return 0;
+| }
+configure:9517: result: unknown
+configure:10088: result: no g++ includes
+configure:10235: checking exception type
+configure:10270: result: 
+configure:10281: checking what the default STL should be
+configure:10326: checking whether we are allowed and able to use --ccache-skip
+configure:10329: result: only used on Mac currently, skipping
+configure:10577: checking which memory allocator to use
+configure:10725: result: internal
+configure:10731: checking whether to add custom build version
+configure:10735: result: yes, 2017-11-25 16:40:24 (Sat, 25 Nov 2017) - CYGWIN_NT-6.1-WOW i686 [Development Build]
+configure:10744: checking whether to build with Java support
+configure:10747: result: yes
+configure:10842: checking the installed JDK
+configure:10924: result: checked (JDK 1.8.0_144)
+configure:11255: checking for jawt lib name
+configure:11425: result: -ljawt
+configure:11431: checking whether to enable gcj aot compilation
+configure:11496: result: no
+configure:11512: checking whether to enable EPM for packing
+configure:11515: result: yes
+configure:11626: checking which package format to use
+configure:11694: result: msi
+configure:11882: checking for gperf
+configure:11900: found /usr/bin/gperf
+configure:11912: result: /usr/bin/gperf
+configure:11923: checking for gperf
+configure:11953: result: /usr/bin/gperf
+configure:11971: checking gperf version
+configure:11974: result: OK
+configure:11982: checking whether to build the stax
+configure:11990: result: yes
+configure:11995: checking whether to build the ODK
+configure:12357: result: no
+configure:12365: checking whether to provide libstdc++/libgcc_s in the installset
+configure:12373: result: yes
+configure:12382: checking which zlib to use
+configure:12440: result: internal
+configure:12447: checking which jpeg to use
+configure:12506: result: internal
+configure:12513: checking which expat to use
+configure:12577: result: internal
+configure:12757: checking which libxslt to use
+configure:12908: result: internal
+configure:12918: checking which libxml to use
+configure:13025: result: internal
+configure:13073: checking which python to use
+configure:13359: result: internal
+configure:13369: checking for bzip2
+configure:13387: found /usr/bin/bzip2
+configure:13399: result: /usr/bin/bzip2
+configure:13418: checking which lucene to use
+configure:13627: result: internal
+configure:13636: checking whether to build the MySQL Connector extension
+configure:13652: result: no
+configure:13882: checking which hsqldb to use
+configure:13945: result: internal
+configure:13954: checking which beanshell to use
+configure:13993: result: none (disabled)
+configure:14004: checking which saxon to use
+configure:14202: result: internal
+configure:14218: checking whether to enable support for JavaScript
+configure:14222: result: yes
+configure:14236: checking which libapr to use
+configure:14334: result: internal
+configure:14347: checking which libapr-util to use
+configure:14445: result: internal
+configure:14458: checking which libserf to use
+configure:14557: result: internal
+configure:14571: checking whether to enable support for CoinMP
+configure:14575: result: yes
+configure:14579: checking which coinmp to use
+configure:14768: result: internal
+configure:14787: checking which curl to use
+configure:14853: result: internal
+configure:14862: checking which mdds to use
+configure:14890: result: internal
+configure:14897: checking which boost to use
+configure:14972: result: internal
+configure:14979: checking which vigra to use
+configure:15007: result: internal
+configure:15014: checking which odbc headers to use
+configure:15031: result: internal
+configure:15038: checking whether to build XML Security support
+configure:15044: result: yes
+configure:15048: checking whether to build LDAP configuration backend
+configure:15186: checking whether to build the internal NSS module
+configure:15191: result: yes
+configure:15194: checking for Mozilla build tooling
+configure:15216: result: ok
+configure:15232: checking which sane header to use
+configure:15248: result: internal
+configure:15255: checking which icu to use
+configure:15479: result: internal
+configure:15494: checking whether to enable graphite support
+configure:15497: result: yes
+configure:15500: checking which graphite to use
+configure:15599: result: internal
+configure:16492: checking whether to link to Xrender
+configure:16500: result: no, dynamically open it
+configure:16504: checking which Xrender headers to use
+configure:16520: result: internal
+configure:16577: checking whether to enable RandR support
+configure:16722: result: no
+configure:16730: checking which libnss to use
+configure:16828: result: internal
+configure:16840: checking which libssl to use
+configure:16946: result: internal
+configure:16955: checking which redland library to use
+configure:17054: result: internal
+configure:17063: checking whether to build the Spell Checking component
+configure:17068: checking which libhunspell to use
+configure:17219: result: internal
+configure:17234: checking whether to build the Hyphenator component
+configure:17239: checking which libhyphen to use
+configure:17393: result: internal
+configure:17420: checking which mythes to use
+configure:17603: result: internal
+configure:17613: checking which libtextcat to use
+configure:17675: result: internal
+configure:17682: checking which libtextcat data directory to use
+configure:17693: result: internal
+configure:17755: checking for getopt
+configure:17755: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -o conftest    conftest.c  >&5
+conftest.c
+Microsoft (R) Incremental Linker Version 9.00.30729.01
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+/out:conftest.exe 
+/out:conftest.exe 
+conftest.obj 
+LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
+configure:17755: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| /* Define getopt to an innocuous variant, in case <limits.h> declares getopt.
+|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+| #define getopt innocuous_getopt
+| 
+| /* System header to define __stub macros and hopefully few prototypes,
+|     which can conflict with char getopt (); below.
+|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+|     <limits.h> exists even on freestanding compilers.  */
+| 
+| #ifdef __STDC__
+| # include <limits.h>
+| #else
+| # include <assert.h>
+| #endif
+| 
+| #undef getopt
+| 
+| /* Override any GCC internal prototype to avoid an error.
+|    Use char because int might match the return type of a GCC
+|    builtin and then its argument prototype would still apply.  */
+| #ifdef __cplusplus
+| extern "C"
+| #endif
+| char getopt ();
+| /* The GNU C library defines this for functions which it implements
+|     to always fail with ENOSYS.  Some functions are actually named
+|     something starting with __ and the normal name is an alias.  */
+| #if defined __stub_getopt || defined __stub___getopt
+| choke me
+| #endif
+| 
+| int
+| main ()
+| {
+| return getopt ();
+|   ;
+|   return 0;
+| }
+configure:17755: result: no
+configure:17768: checking for readdir_r
+configure:17768: /cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe -o conftest    conftest.c  >&5
+conftest.c
+Microsoft (R) Incremental Linker Version 9.00.30729.01
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+/out:conftest.exe 
+/out:conftest.exe 
+conftest.obj 
+LINK : fatal error LNK1104: cannot open file 'LIBCMT.lib'
+Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
+Copyright (C) Microsoft Corporation.  All rights reserved.
+
+cl : Command line warning D9035 : option 'o' has been deprecated and will be removed in a future release
+configure:17768: $? = 2
+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 SIZEOF_LONG 0
+| #define WORDS_BIGENDIAN 1
+| /* end confdefs.h.  */
+| /* Define readdir_r to an innocuous variant, in case <limits.h> declares readdir_r.
+|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+| #define readdir_r innocuous_readdir_r
+| 
+| /* System header to define __stub macros and hopefully few prototypes,
+|     which can conflict with char readdir_r (); below.
+|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+|     <limits.h> exists even on freestanding compilers.  */
+| 
+| #ifdef __STDC__
+| # include <limits.h>
+| #else
+| # include <assert.h>
+| #endif
+| 
+| #undef readdir_r
+| 
+| /* Override any GCC internal prototype to avoid an error.
+|    Use char because int might match the return type of a GCC
+|    builtin and then its argument prototype would still apply.  */
+| #ifdef __cplusplus
+| extern "C"
+| #endif
+| char readdir_r ();
+| /* The GNU C library defines this for functions which it implements
+|     to always fail with ENOSYS.  Some functions are actually named
+|     something starting with __ and the normal name is an alias.  */
+| #if defined __stub_readdir_r || defined __stub___readdir_r
+| choke me
+| #endif
+| 
+| int
+| main ()
+| {
+| return readdir_r ();
+|   ;
+|   return 0;
+| }
+configure:17768: result: no
+configure:17792: checking for PSDK files
+configure:17844: result: SDK files found ...)
+configure:17855: result: Found Windows SDK 7.0 (/cygdrive/c/MicrosoftSDKs/Windows/v7.0)
+configure:17867: checking for DirectX SDK files
+configure:17921: result: found
+configure:17938: checking for ATL and MFC
+configure:17944: testing ATL/MFC libs and includes
+configure:17975: looking for atlbase.h in "/cygdrive/c/WinDDK/7600.16385.1/inc/atl71"
+configure:17982: found atlbase.h in "/cygdrive/c/WinDDK/7600.16385.1/inc/atl71"? "yes"
+configure:17985: looking for afx.h in "/cygdrive/c/WinDDK/7600.16385.1/inc/mfc42"
+configure:17992: found afx.h in "/cygdrive/c/WinDDK/7600.16385.1/inc/mfc42"? "yes"
+configure:17995: looking for atls.lib in "/cygdrive/c/WinDDK/7600.16385.1/lib/atl/i386"
+configure:17999: looking for atlthunk.lib in "/cygdrive/c/WinDDK/7600.16385.1/lib/atl/i386"
+configure:18006: found atlthunk.lib in "/cygdrive/c/WinDDK/7600.16385.1/lib/atl/i386"? "YES"
+configure:18011: found atls.lib in "/cygdrive/c/WinDDK/7600.16385.1/lib/atl/i386"? "yes"
+configure:18037: result: ATL/MFC enabled
+configure:18052: checking for NSIS
+configure:18056: checking for nsis.exe
+configure:18089: result: no
+configure:18114: result: found (/cygdrive/c/NSIS)
+configure:18116: checking whether NSIS version is >= 3.*
+configure:18122: result: found NSIS 3.02 >= 3.*
+configure:18124: checking whether NSIS was compiled with Unicode support
+configure:18127: result: NSIS version compiled with Unicode support.
+configure:18145: checking for bison
+configure:18163: found /usr/bin/bison
+configure:18175: result: /usr/bin/bison
+configure:18186: checking the bison version
+configure:18197: result: checked (/usr/bin/bison 3.0.4)
+configure:18206: checking for flex
+configure:18224: found /usr/bin/flex
+configure:18236: result: /usr/bin/flex
+configure:18249: checking for patch
+configure:18267: found /usr/bin/patch
+configure:18279: result: /usr/bin/patch
+configure:18322: checking for gnucp
+configure:18355: result: no
+configure:18322: checking for cp
+configure:18340: found /usr/bin/cp
+configure:18352: result: /usr/bin/cp
+configure:18375: checking whether /usr/bin/cp is GNU cp from coreutils with preserve= support
+configure:18378: result: yes
+configure:18402: checking for bash
+configure:18420: found /usr/bin/bash
+configure:18432: result: /usr/bin/bash
+configure:18448: checking ml.exe assembler path
+configure:18456: checking for ml.exe
+configure:18489: result: no
+configure:18497: result: found (/cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin)
+configure:18506: result: 
+configure:18515: checking nasm.exe assembler path
+configure:18523: checking for nasm.exe
+configure:18556: result: no
+configure:18567: result: 
+configure:18588: checking for zip
+configure:18606: found /usr/bin/zip
+configure:18618: result: /usr/bin/zip
+configure:18628: checking for unzip
+configure:18646: found /usr/bin/unzip
+configure:18658: result: /usr/bin/unzip
+configure:18683: checking for dbghelp.dll
+configure:18686: result: found and executable
+configure:18700: checking for vcredist_x86.exe
+configure:18703: result: found and executable
+configure:18710: checking for vcredist_x64.exe
+configure:18713: result: found and executable
+configure:18733: checking for gdiplus.dll
+configure:18736: result: found and executable
+configure:18747: checking for msvcr100.dll
+configure:18750: result: found and executable
+configure:18761: checking which VCLplugs shall be built
+configure:18788: result: gtk
+configure:18794: checking whether to enable GConf support
+configure:18892: result: no
+configure:18899: checking whether to enable GNOME VFS support
+configure:19090: result: no
+configure:19657: checking whether to use cairo
+configure:19808: result: no
+configure:19826: checking whether to build the OpenGL Transitions component
+configure:19925: result: no
+configure:19932: checking whether to build the PDF Import extension
+configure:20044: result: no
+configure:20053: checking whether to build the Wiki Publisher extension
+configure:20056: result: yes
+configure:20058: checking for swext module
+configure:20061: result: OK
+configure:20076: checking which Servlet API Jar to use
+configure:20109: result: internal
+configure:20118: checking whether to build the Report Builder extension
+configure:20886: result: no
+configure:20907: checking which Apache commons-* libs to use
+configure:21222: result: internal
+configure:21584: checking whether to enable the lockdown pieces
+configure:21592: result: no
+configure:21597: checking whether to enable evolution 2 support
+configure:21696: result: no
+configure:21703: checking whether to include MathMLDTD
+configure:21711: result: yes
+configure:21722: checking whether to include category B fonts
+configure:21725: result: yes
+configure:21737: checking whether to include category A fonts
+configure:21740: result: yes
+configure:21752: checking whether any fonts are included
+configure:21757: result: yes
+configure:21768: checking whether to include PPDs
+configure:21771: result: yes
+configure:21781: checking whether to include AFMs
+configure:21784: result: yes
+configure:21797: checking whether and how to use Xinerama
+configure:21902: result: no
+configure:21936: checking whether to build own version of libpng
+configure:21942: result: yes
+configure:21959: checking whether to build own version of libjpeg
+configure:21982: result: yes
+configure:21988: checking whether to trigger rat scan
+configure:21991: result: no
+configure:22172: checking for jakarta-ant
+configure:22206: result: no
+configure:22172: checking for ant
+configure:22191: found /cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant
+configure:22203: result: /cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant
+configure:22238: checking if /cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant works
+configure:22263: /cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: C:\jim\src\asf\AOO420\main\conftest.xml
+
+conftest:
+    [javac] C:\jim\src\asf\AOO420\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: 1 second
+configure:22266: $? = 0
+configure:22269: result: Ant works
+configure:22297: checking Ant lib directory
+configure:22324: result: Ant lib directory found.
+configure:22337: checking whether ant is >= 1.7.0
+configure: ant_version 1.9.9 
+configure: ant_version_major 1 
+configure: ant_version_minor 9 
+configure:22349: result: yes, 1.9.9
+configure:22356: checking whether ant supports mapper type="regexp"
+configure:22389: /cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant -buildfile conftest.xml 1>&2
+Buildfile: C:\jim\src\asf\AOO420\main\conftest.xml
+
+copytest:
+
+conftest:
+    [javac] C:\jim\src\asf\AOO420\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:22392: $? = 0
+configure:22395: result: yes
+configure:22478: checking which languages to be built
+configure:22485: 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:22492: checking which languages have poor help localizations
+configure:22496: result: none
+configure:22504: checking which dictionaries to include
+configure:22508: result: ALL
+configure:22517: checking for additional 'intro' bitmaps
+configure:22522: result: none
+configure:22540: checking for additional 'about' bitmaps
+configure:22545: result: none
+configure:22564: checking for vendor
+configure:22571: result: Apache OpenOffice Development Build
+configure:22577: checking for UNIX wrapper name
+configure:22580: result: not set
+configure:22589: checking whether to statically link to Gtk
+configure:22597: result: no
+configure:22602: checking whether to use layout dialogs
+configure:22610: result: no
+configure:22618: checking build verbosity
+configure:22632: result: not set
+configure:22637: checking whether to enable dependency tracking
+configure:22644: result: yes
+configure:22661: checking solver path
+configure:22665: result: default
+configure:22684: writing config.status
+configure:22837: creating ./config.status
+
+## ---------------------- ##
+## Running config.status. ##
+## ---------------------- ##
+
+This file was extended by config.status, which was
+generated by GNU Autoconf 2.69.  Invocation command line was
+
+  CONFIG_FILES    = 
+  CONFIG_HEADERS  = 
+  CONFIG_LINKS    = 
+  CONFIG_COMMANDS = 
+  $ ./config.status 
+
+on aoobuilder
+
+config.status:1115: creating set_soenv
+config.status:1115: creating Makefile
+
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+
+ac_cv_build=i686-pc-cygwin
+ac_cv_c_bigendian=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_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=no
+ac_cv_func_readdir_r=no
+ac_cv_header_inttypes_h=no
+ac_cv_header_memory_h=no
+ac_cv_header_stdint_h=no
+ac_cv_header_stdlib_h=no
+ac_cv_header_string_h=no
+ac_cv_header_strings_h=no
+ac_cv_header_sys_stat_h=no
+ac_cv_header_sys_types_h=no
+ac_cv_header_unistd_h=no
+ac_cv_host=i686-pc-cygwin
+ac_cv_path_ANT=/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant
+ac_cv_path_AWK=/usr/bin/awk
+ac_cv_path_BISON=/usr/bin/bison
+ac_cv_path_BZIP2=/usr/bin/bzip2
+ac_cv_path_CYGWIN_PATH=/usr/bin/bash
+ac_cv_path_EGREP='/usr/bin/grep -E'
+ac_cv_path_FLEX=/usr/bin/flex
+ac_cv_path_GNUCP=/usr/bin/cp
+ac_cv_path_GPERF=/usr/bin/gperf
+ac_cv_path_GREP=/usr/bin/grep
+ac_cv_path_PATCH=/usr/bin/patch
+ac_cv_path_PERL=/usr/bin/perl
+ac_cv_path_SED=/usr/bin/sed
+ac_cv_path_SHELLPATH=/usr/bin/bash
+ac_cv_path_UNZIP=/usr/bin/unzip
+ac_cv_path_ZIP=/usr/bin/zip
+ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
+ac_cv_prog_AWK=awk
+ac_cv_sizeof_long=0
+ac_cv_sys_file_offset_bits=unknown
+ac_cv_sys_large_files=unknown
+ac_cv_sys_largefile_CC=no
+ac_cv_target=i686-pc-cygwin
+
+## ----------------- ##
+## Output variables. ##
+## ----------------- ##
+
+ABOUT_BITMAPS=''
+ADDITIONAL_REPOSITORIES='../ext_libraries ../extras'
+ALLOC=''
+ANT='/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/bin/ant'
+ANT_HOME='/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9'
+ANT_LIB='/cygdrive/c/apache-ant-1.9.9-bin/apache-ant-1.9.9/lib'
+APR_CFLAGS=''
+APR_LIBS=''
+APR_UTIL_CFLAGS=''
+APR_UTIL_LIBS=''
+ARM_TARGET=''
+ASM_HOME='/cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin'
+ATL_INCLUDE='C:/WinDDK/760016~1.1/inc/atl71'
+ATL_LIB='C:/WinDDK/760016~1.1/lib/atl/i386'
+ATL_LIB_X64='C:/WinDDK/760016~1.1/lib/atl/amd64'
+AWK='/usr/bin/awk'
+AWTLIB='-ljawt'
+BISON='/usr/bin/bison'
+BSH_JAR=''
+BUILD_EPM=''
+BUILD_PIXMAN=''
+BUILD_STAX='YES'
+BUILD_TYPE='OOo TWAIN GTEST ZLIB JPEG EXPAT LIBXSLT LIBXML2 LIBXMLSEC PYTHON LUCENE HSQLDB SAXON RHINO APR APR_UTIL SERF COINMP COINMP CURL MDDS BOOST VIGRA UNIXODBC NSS SANE ICU GRAPHITE X11_EXTENSIONS NSS OPENSSL REDLAND HUNSPELL HYPHEN MYTHES LIBTEXTCAT LIBTEXTCATDATA SWEXT TOMCAT APACHE_COMMONS TOMCAT MATHMLDTD CATB_FONTS MORE_FONTS AFMS L10N'
+BUILD_UNOWINREG='NO'
+BUILD_VER_STRING='2017-11-25 16:40:24 (Sat, 25 Nov 2017) - CYGWIN_NT-6.1-WOW i686 [Development Build]'
+BUILD_X64='TRUE'
+BUNDLED_EXTENSION_BLOBS=''
+BUNDLED_PREREG_EXTENSIONS=''
+BZIP2='/usr/bin/bzip2'
+CAIRO_CFLAGS=''
+CAIRO_LIBS=''
+CC='/cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe'
+CCACHE=''
+CC_PATH='./'
+CFLAGS=''
+COINMP_CFLAGS=''
+COINMP_LIBS=''
+COMEX='12'
+COMMONS_CODEC_JAR=''
+COMMONS_HTTPCLIENT_JAR=''
+COMMONS_LANG_JAR=''
+COMMONS_LOGGING_JAR=''
+COMPATH='/cygdrive/c/PROGRA~2/MICROS~1.0/VC'
+COM_IS=''
+CPP=''
+CPPFLAGS=''
+CRYPT_LINK=''
+CSC_PATH='/cygdrive/c/Windows/MICROS~1.NET/FRAMEW~1/V20~1.507'
+CURLCONFIG=''
+CURL_CFLAGS=''
+CURL_LIBS=''
+CUSTOM_PACK_LIST=''
+CXX='/cygdrive/c/PROGRA~2/MICROS~1.0/VC/bin/cl.exe'
+CXXCPP=''
+CXXFLAGS=''
+CYGWIN_PATH='/usr/bin'
+DBUS_CFLAGS=''
+DBUS_LIBS=''
+DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSIZEOF_LONG=0 -DWORDS_BIGENDIAN=1'
+DICT_SYSTEM_DIR=''
+DIRECTXSDK_HOME='/cygdrive/c/Microsoft_DirectX_SDK_June_2010'
+DIRECTXSDK_LIB='/cygdrive/c/Microsoft_DirectX_SDK_June_2010/lib/x86'
+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=''
+ECHO_N='-n'
+ECHO_T=''
+EGREP='/usr/bin/grep -E'
+ENABLE_BEANSHELL='NO'
+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='TRUE'
+ENABLE_DIRECT_DRAW=''
+ENABLE_EVOAB2=''
+ENABLE_FONTCONFIG=''
+ENABLE_GCONF=''
+ENABLE_GIO=''
+ENABLE_GNOMEVFS=''
+ENABLE_GRAPHITE='TRUE'
+ENABLE_GSTREAMER=''
+ENABLE_GTK='TRUE'
+ENABLE_HUNSPELL='YES'
+ENABLE_HYPHEN='YES'
+ENABLE_JAVASCRIPT='YES'
+ENABLE_KDE4=''
+ENABLE_KDE=''
+ENABLE_LAYOUT='FALSE'
+ENABLE_LOCKDOWN=''
+ENABLE_MEDIAWIKI='YES'
+ENABLE_MYSQLC='NO'
+ENABLE_NSS_MODULE='YES'
+ENABLE_ONLINE_UPDATE='YES'
+ENABLE_OPENGL=''
+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=''
+EPM_URL=''
+EXCEPTIONS=''
+EXEEXT=''
+FBSD_GCC_RPATH=''
+FLEX='/usr/bin/flex'
+FLUTE_JAR=''
+FRAME_HOME='/cygdrive/c/MICROS~1/Windows/v7.0'
+FREETYPE_CFLAGS=''
+FREETYPE_LIBS=''
+GCCVER='20995'
+GCC_HOME='/usr'
+GCONF_CFLAGS=''
+GCONF_LIBS=''
+GIO_CFLAGS=''
+GIO_LIBS=''
+GNOMEVFS_CFLAGS=''
+GNOMEVFS_LIBS=''
+GNUCP='/usr/bin/cp'
+GNUMAKE='make'
+GNUPATCH=''
+GNUTAR='tar'
+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='NO_GXX_INCLUDE'
+HAMCREST_CORE_JAR=''
+HAVE_ATLTHUNK='YES'
+HAVE_GCC_VISIBILITY_FEATURE=''
+HAVE_GETOPT='NO'
+HAVE_LD_BSYMBOLIC_FUNCTIONS=''
+HAVE_LD_HASH_STYLE=''
+HAVE_READDIR_R='NO'
+HOME='/home/jim'
+HSQLDB_JAR=''
+HUNSPELL_CFLAGS=''
+HUNSPELL_LIBS=''
+HYPHEN_LIB=''
+HYPH_SYSTEM_DIR=''
+ICUCONFIG=''
+ICU_MAJOR=''
+ICU_MICRO=''
+ICU_MINOR=''
+INTRO_BITMAPS=''
+IS_SYSTEM_DMAKE=''
+JAVAAOTCOMPILER=''
+JAVACISGCJ=''
+JAVACOMPILER='/cygdrive/c/Java/JDK18~1.0_1/bin/javac.exe'
+JAVADOC='/cygdrive/c/Java/JDK18~1.0_1/bin/javadoc.exe'
+JAVAFLAGS=''
+JAVAIFLAGS=''
+JAVAINTERPRETER='/cygdrive/c/Java/JDK18~1.0_1/bin/java.exe'
+JAVA_HOME='/cygdrive/c/Java/JDK18~1.0_1'
+JDK='sun'
+JFREEREPORT_JAR=''
+KDE4_CFLAGS=''
+KDE4_LIBS=''
+KDE_CFLAGS=''
+KDE_LIBS=''
+LDFLAGS=''
+LFS_CFLAGS='-D_FILE_OFFSET_BITS=unknown -D_LARGE_FILES'
+LIBBASE_JAR=''
+LIBFONTS_JAR=''
+LIBFORMULA_JAR=''
+LIBINTL_PREFIX=''
+LIBLAYOUT_JAR=''
+LIBLOADER_JAR=''
+LIBMYSQL_PATH=''
+LIBOBJS=''
+LIBREPOSITORY_JAR=''
+LIBS=''
+LIBSERIALIZER_JAR=''
+LIBXML_CFLAGS=''
+LIBXML_JAR=''
+LIBXML_LIBS=''
+LIBXSLT_CFLAGS=''
+LIBXSLT_LIBS=''
+LOCAL_SOLENV='DEFAULT'
+LOCAL_SOLVER='DEFAULT'
+LTLIBOBJS=''
+LUCENE_ANALYZERS_JAR=''
+LUCENE_CORE_JAR=''
+MACOSX_DEPLOYMENT_TARGET=''
+MACOSX_SDK_PATH=''
+MFC_INCLUDE='C:/WinDDK/760016~1.1/inc/mfc42'
+MFC_LIB='C:/WinDDK/760016~1.1/lib/mfc/i386'
+MIDL_PATH='/cygdrive/c/MICROS~1/Windows/v7.0/bin'
+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='/opt/mozilla-build'
+MOZ_INC=''
+MSPDB_PATH='/cygdrive/c/PROGRA~2/MICROS~1.0/Common7/IDE'
+MYSQLCONFIG=''
+MYSQL_DEFINES=''
+MYSQL_INC=''
+MYSQL_LIB=''
+MYTHES_CFLAGS=''
+MYTHES_LIBS=''
+NASM_EXE=''
+NASM_HOME='NO_NASM_HOME'
+NEW_SHADOW_API=''
+NSIS_PATH='/cygdrive/c/NSIS'
+NSS_CFLAGS=''
+NSS_LIBS=''
+OBJEXT=''
+OOO_JUNIT_JAR=''
+OOO_VENDOR='Apache OpenOffice Development Build'
+OPENSSL_CFLAGS=''
+OPENSSL_LIBS=''
+OSVERSION=''
+PACKAGE_BUGREPORT=''
+PACKAGE_NAME=''
+PACKAGE_STRING=''
+PACKAGE_TARNAME=''
+PACKAGE_URL=''
+PACKAGE_VERSION=''
+PAM=''
+PAM_LINK=''
+PATCH='/usr/bin/patch'
+PATH_SEPARATOR=':'
+PERL='/usr/bin/perl'
+PKGFORMAT='msi'
+PKGMK=''
+PKG_CONFIG='/usr/bin/pkg-config'
+PKG_CONFIG_LIBDIR=''
+PKG_CONFIG_PATH=''
+POPPLER_CFLAGS=''
+POPPLER_LIBS=''
+PRODUCT='full'
+PROEXT='.pro'
+PROFULLSWITCH='product=full'
+PSDK_HOME='/cygdrive/c/MicrosoftSDKs/Windows/v7.0'
+PTHREAD_CFLAGS=''
+PTHREAD_LIBS=''
+PYTHON=''
+PYTHON_CFLAGS=''
+PYTHON_EXEC_PREFIX=''
+PYTHON_LIBS=''
+PYTHON_PLATFORM=''
+PYTHON_PREFIX=''
+PYTHON_VERSION=''
+RAT_JAR_HOME=''
+REDLAND_CFLAGS=''
+REDLAND_LIBS=''
+RPM=''
+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/bin'
+SIZEOF_LONG='0'
+SOLAR_JAVA='TRUE'
+SOURCEVERSION='AOO420'
+SYSTEM_APACHE_COMMONS='NO'
+SYSTEM_APR='NO'
+SYSTEM_APR_UTIL='NO'
+SYSTEM_BOOST='NO'
+SYSTEM_BSH='NO'
+SYSTEM_CAIRO=''
+SYSTEM_COINMP='NO'
+SYSTEM_CURL='NO'
+SYSTEM_DICTS='NO'
+SYSTEM_EXPAT='NO'
+SYSTEM_GDKPIXBUF='YES'
+SYSTEM_GENBRK=''
+SYSTEM_GENCCODE=''
+SYSTEM_GENCMN=''
+SYSTEM_GETTEXT='YES'
+SYSTEM_GLIB='YES'
+SYSTEM_GRAPHITE='NO'
+SYSTEM_HSQLDB='NO'
+SYSTEM_HUNSPELL='NO'
+SYSTEM_HYPH='NO'
+SYSTEM_ICU='NO'
+SYSTEM_JFREEREPORT=''
+SYSTEM_JPEG='NO'
+SYSTEM_LIBC=''
+SYSTEM_LIBJPEG='NO'
+SYSTEM_LIBPNG='NO'
+SYSTEM_LIBTEXTCAT='NO'
+SYSTEM_LIBTEXTCAT_DATA=''
+SYSTEM_LIBXML='NO'
+SYSTEM_LIBXSLT='NO'
+SYSTEM_LUCENE='NO'
+SYSTEM_MDDS='NO'
+SYSTEM_MYSQL=''
+SYSTEM_MYSQL_CPPCONN=''
+SYSTEM_MYTHES='NO'
+SYSTEM_NSS='NO'
+SYSTEM_ODBC_HEADERS='NO'
+SYSTEM_OPENSSL='NO'
+SYSTEM_PANGO='YES'
+SYSTEM_POPPLER=''
+SYSTEM_PYTHON='NO'
+SYSTEM_REDLAND='NO'
+SYSTEM_SANE_HEADER='NO'
+SYSTEM_SAXON='NO'
+SYSTEM_SERF='NO'
+SYSTEM_SERVLETAPI='NO'
+SYSTEM_STDLIBS='NO'
+SYSTEM_VIGRA='NO'
+SYSTEM_XRENDER_HEADERS='NO'
+SYSTEM_ZLIB='NO'
+TARFILE_LOCATION='DEFAULT'
+THES_SYSTEM_DIR=''
+UNIXWRAPPERNAME=''
+UNZIP='/usr/bin/unzip'
+UPD='420'
+USE_CCACHE=''
+USE_FT_EMBOLDEN=''
+USE_MINGW=''
+USE_PACKAGER=''
+USE_SYSTEM_STL='YES'
+USE_XINERAMA=''
+VALGRIND_CFLAGS=''
+VC_STANDARD=''
+VERBOSE=''
+WINDOWS_VISTA_PSDK='TRUE'
+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 eu fi fr gd gl he hi hu it ja km ko lt nb nl pl pt pt-BR ru sk sl sr sv ta th tr vi zh-CN zh-TW'
+WITH_LDAP='NO'
+WITH_MINGWIN='0'
+WITH_OPENLDAP=''
+WITH_POOR_HELP_LOCALIZATIONS=''
+WITH_VC_REDIST='YES'
+WORDS_BIGENDIAN='yes'
+XAU_LIBS=''
+XINC='no_x_includes'
+XINERAMA_LINK=''
+XLIB='no_x_libraries'
+XMKMF=''
+XRANDR_CFLAGS=''
+XRANDR_DLOPEN=''
+XRANDR_LIBS=''
+XRENDER_LINK='NO'
+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=''
+ac_ct_CXX=''
+bindir='${exec_prefix}/bin'
+build='i686-pc-cygwin'
+build_alias=''
+build_cpu='i686'
+build_os='cygwin'
+build_vendor='pc'
+datadir='${datarootdir}'
+datarootdir='${prefix}/share'
+docdir='${datarootdir}/doc/${PACKAGE}'
+dvidir='${docdir}'
+exec_prefix='${prefix}'
+host='i686-pc-cygwin'
+host_alias=''
+host_cpu='i686'
+host_os='cygwin'
+host_vendor='pc'
+htmldir='${docdir}'
+includedir='${prefix}/include'
+infodir='${datarootdir}/info'
+libdir='${exec_prefix}/lib'
+libexecdir='${exec_prefix}/libexec'
+localedir='${datarootdir}/locale'
+localstatedir='${prefix}/var'
+mandir='${datarootdir}/man'
+nodep=''
+oldincludedir='/usr/include'
+pdfdir='${docdir}'
+pkgpyexecdir=''
+pkgpythondir=''
+prefix='/usr/local'
+program_transform_name='s,x,x,'
+psdir='${docdir}'
+pyexecdir=''
+pythondir=''
+sbindir='${exec_prefix}/sbin'
+sharedstatedir='${prefix}/com'
+sysconfdir='${prefix}/etc'
+target='i686-pc-cygwin'
+target_alias=''
+target_cpu='i686'
+target_os='cygwin'
+target_vendor='pc'
+
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+
+/* confdefs.h */
+#define PACKAGE_NAME ""
+#define PACKAGE_TARNAME ""
+#define PACKAGE_VERSION ""
+#define PACKAGE_STRING ""
+#define PACKAGE_BUGREPORT ""
+#define PACKAGE_URL ""
+#define SIZEOF_LONG 0
+#define WORDS_BIGENDIAN 1
+
+configure: exit 0

Added: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Pack-dev.lst
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Pack-dev.lst?rev=1856088&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Pack-dev.lst (added)
+++ openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/Pack-dev.lst Fri Mar 22 22:52:47 2019
@@ -0,0 +1,13 @@
+# Pack-dev.lst: Contains the information for the packaging process.
+# Syntax: Product, list of platforms, list of languages, target (Separator: spaces)
+# Syntax for list of languages: One multilingual installation set uses separator ","
+# (Example: "en-US,de" creates english-german multilingual installation set)
+# Different installation sets use the "|" as separator
+
+
+# Product                     List_of_platforms   List_of_languages                                                                                                                                  Target
+
+OpenOffice_Dev                wntmsci12.pro       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   openofficedev
+OpenOffice_SDK_Dev            wntmsci12.pro       en-US                                                                                                                                              sdkoodev
+OpenOffice_Languagepack_Dev   wntmsci12.pro       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   ooodevlanguagepack
+

Added: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt
URL: http://svn.apache.org/viewvc/openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt?rev=1856088&view=auto
==============================================================================
--- openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt (added)
+++ openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt Fri Mar 22 22:52:47 2019
@@ -0,0 +1,57 @@
+This is the configuration used for AOO 4.2.0-Dev1:
+
+Step by step building guide can be found here:
+https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO/Step_by_step#Windows_7.2C_Windows_8.1.2C_Windows_10
+
+Build Environment:
+
+ - Windows 10 Pro 1809 (64-bit)
+ - Cygwin 3.0.4 (64-bit)
+ - Apache Ant 1.10.5
+ - Mozilla Build 3.2
+ - MS Visual C++ Compiler 2008 Standard Edition (32-bit)
+ - MS Visual C++ Compiler 2008 Standard Edition (64-bit)
+ - MS Windows Driver Kit 7.1.0.7600
+ - MS Windows SDK for Windows 7.0.7600
+ - MS DirectX SDK (June 2010)
+ - Java SE Development Kit 8 Update 202 (32-bit)
+ - NSIS 3.04
+
+Bundled Runtime:
+
+ - MS Visual C++ 2008 Redistributable (32-bit) 9.0.30729.6161
+ - MS Visual C++ 2008 Redistributable (64-bit) 9.0.30729.6161
+ - MS Visual C Runtime / msvcr100.dll (32-bit) 10.0.40219.325
+
+Configure:
+
+SDK_PATH="/cygdrive/c/Microsoft_SDKs/Windows/v7.0"
+WDK_HOME="/cygdrive/c/WinDDK/7600.16385.1"
+./configure \
+    --with-build-version="$(date +"%Y-%m-%d %H:%M") - `uname -sm`  -  Developer Build 1" \
+    --with-frame-home="$SDK_PATH" \
+    --with-psdk-home="$SDK_PATH" \
+    --with-midl-path="$SDK_PATH/bin" \
+    --with-ant-home="/cygdrive/c/apache-ant-1.10.5" \
+    --with-jdk-home="C:/PROGRA~2/Java/JDK18~1.0_2" \
+    --with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2" \
+    --with-directx-home="C:\Microsoft_DirectX_SDK_June_2010" \
+    --with-csc-path="C:/Windows/Microsoft.NET/Framework/v3.5" \
+    --with-atl-include-dir="$WDK_HOME/inc/atl71" \
+    --with-atl-lib-dir="$WDK_HOME/lib/atl/i386" \
+    --with-mfc-include-dir="$WDK_HOME/inc/mfc42" \
+    --with-mfc-lib-dir="$WDK_HOME/lib/mfc/i386" \
+    --enable-win-x64-shellext \
+    --enable-wiki-publisher \
+    --with-junit="C:/junit/junit-4.12.jar" \
+    --with-hamcrest-core="C:/hamcrest/hamcrest-core-1.3.jar" \
+    --without-stlport \
+    --with-mozilla-build="/cygdrive/c/mozilla-build-3.2" \
+    --enable-category-b \
+    --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" \
+    --enable-bundled-dictionaries \
+    --with-packager-list=/cygdrive/c/Source/Pack-dev.lst \
+    --with-nsis-path="C:/NSIS"
+
+For further details see "config.log"
+

Propchange: openoffice/devtools/build-scripts/4.2.0-dev/wntmsci/ReadMe.txt
------------------------------------------------------------------------------
    svn:eol-style = native