[ooo-build-commit] .: 4 commits - autogen.sh configure configure.in .gitignore Makefile.in solenv/bin

Jan Holesovsky kendy at kemper.freedesktop.org
Tue Aug 24 06:57:09 PDT 2010


 .gitignore        |    9 
 Makefile.in       |   10 
 autogen.sh        |   35 
 configure         |31179 ------------------------------------------------------
 configure.in      |   42 
 solenv/bin/linkoo |    1 
 6 files changed, 92 insertions(+), 31184 deletions(-)

New commits:
commit 656ac1538c0f3e8a2b6073b36bac50829cab176e
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Tue Aug 24 15:55:33 2010 +0200

    testtool-more-defaults.diff: Moved the linkoo change here.

diff --git a/solenv/bin/linkoo b/solenv/bin/linkoo
index 7e974b0..fc15fa4 100755
--- a/solenv/bin/linkoo
+++ b/solenv/bin/linkoo
@@ -365,6 +365,7 @@ if (!-f "$OOO_INSTALL/" . $brand_program_dir . "/ooenv") {
     print "Creating '$OOO_INSTALL/", $brand_program_dir, "/ooenv'\n";
     open ($ooenv, ">$OOO_INSTALL/" . $brand_program_dir . "/ooenv") || die "Can't open $OOO_INSTALL/" . $brand_program_dir . "/ooenv: $!";
     print $ooenv $env_script;
+    print $ooenv "# testtool\nexport SRC_ROOT=$OOO_BUILD\n";
     close ($ooenv);
 }
 
commit 13ac69cd80e46c68efd2e850e848fea36b7ba433
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Tue Aug 24 15:35:51 2010 +0200

    Ignore backup and .swp files.

diff --git a/.gitignore b/.gitignore
index d6d65b8..def767e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,11 @@
+# backup and temporary files
+*~
+.*.sw[op]
+
+# the build directories
 /*/unxlng??
 /*/unxlng??.pro
 
+# autoconf generated stuff
 /ChangeLog
 /configure
commit dca14f28d904c10ade618711158442fb8d472457
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Tue Aug 24 15:26:35 2010 +0200

    Implement --with-num-cpus and --with-max-jobs.
    
    To be able handle the amount of jobs in the Makefile.

diff --git a/Makefile.in b/Makefile.in
index db9849b..9ef54c6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -5,7 +5,7 @@ SHELL=/bin/sh
 all:
 	. ./*Env.Set.sh && \
 	./bootstrap && \
-		cd instsetoo_native && ../solenv/bin/build.pl --all
+		cd instsetoo_native && ../solenv/bin/build.pl -P at BUILD_NCPUS@ --all -P at BUILD_MAX_JOBS@
 
 distclean:
 	. ./*Env.Set.sh && \
@@ -17,8 +17,8 @@ clean:
 	
 dev-install:
 	. ./*Env.Set.sh && \
-		cd @SRC_ROOT@/instsetoo_native/util && \
-		LOCALINSTALLDIR=@SRC_ROOT@/install dmake openoffice_en-US PKGFORMAT=installed && \
-		$SOLARENV/bin/linkoo @SRC_ROOT@/install @SRC_ROOT@ && \
+		cd $$SRC_ROOT/instsetoo_native/util && \
+		LOCALINSTALLDIR=$$SRC_ROOT/install dmake openoffice_en-US PKGFORMAT=installed && \
+		$SOLARENV/bin/linkoo $$SRC_ROOT/install $$SRC_ROOT && \
 		echo && \
-		echo "Developer installation finished in @SRC_ROOT@"
+		echo "Developer installation finished in $$SRC_ROOT"
diff --git a/configure.in b/configure.in
index 2d276e9..3c6a88e 100644
--- a/configure.in
+++ b/configure.in
@@ -821,6 +821,19 @@ AC_ARG_ENABLE(verbose,
 AC_ARG_ENABLE(dependency-tracking,
 [  --disable-dependency-tracking  Disables generation of dependency information.
 ],,)
+AC_ARG_WITH(num-cpus,
+[  --with-num-cpus         Number of build processes/cpus to use (number of
+                          projects that will build at the same time).
+                          Multi-process/multi-cpu builds can save a lot of
+                          time on multi-cpu machines. Defaults to the number
+                          of CPUs on the machine
+],,)
+AC_ARG_WITH(max-jobs,
+[  --with-max-jobs         Maximum number of jobs per one CPU that will be
+                          issued at the same time my dmake. The real number of
+                          the jobs is affected by the --with-num-cpus too, it
+                          can get up to CPUS*max_jobs. Defaults to 1.],
+,)
 
 BUILD_TYPE="OOo"
 
@@ -6970,6 +6983,35 @@ fi
 AC_SUBST(nodep)
 
 dnl ===================================================================
+dnl Number of CPUs to use during the build
+dnl ===================================================================
+AC_MSG_CHECKING([for number of processors to use])
+BUILD_NCPUS=`grep $'^processor\t*:' /proc/cpuinfo | wc -l`
+if test "z$with_num_cpus" != "z"; then
+    BUILD_NCPUS=$with_num_cpus
+fi
+if test "$BUILD_NCPUS" = "0" ; then
+   BUILD_NCPUS=1
+fi
+AC_MSG_RESULT([$BUILD_NCPUS])
+AC_SUBST(BUILD_NCPUS)
+
+dnl ===================================================================
+dnl Number of CPUs to use during the build
+dnl ===================================================================
+AC_MSG_CHECKING([for maximum of jobs per processor])
+BUILD_MAX_JOBS="1"
+if test "z$with_max_jobs" != "z"; then
+    if test "$with_max_jobs" -gt "10"; then
+        AC_MSG_WARN([dmake is limited to 10 jobs, using --with-max-jobs=10 (instead of $with_num_jobs).])
+        with_max_jobs="10"
+    fi
+    BUILD_MAX_JOBS="$with_max_jobs"
+fi
+AC_MSG_RESULT([$BUILD_MAX_JOBS])
+AC_SUBST(BUILD_MAX_JOBS)
+
+dnl ===================================================================
 dnl Setting up the environment.
 dnl ===================================================================
 echo "********************************************************************"
commit 5d1cd9a652892aa753c14eb8c2aeb79d7de5c19b
Author: Jan Holesovsky <kendy at suse.cz>
Date:   Tue Aug 24 15:03:44 2010 +0200

    Remove 'configure' from the SCM, generate it using ./autogen.sh instead.

diff --git a/.gitignore b/.gitignore
index f9ff7e2..d6d65b8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,5 @@
 /*/unxlng??
 /*/unxlng??.pro
+
+/ChangeLog
+/configure
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..2725f16
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,35 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+if test "z$1" = "z--clean"; then
+    echo "Cleaning"
+
+    rm -Rf autom4te.cache bonobo/autom4te.cache
+    rm -f missing install-sh mkinstalldirs libtool ltmain.sh
+    exit 1;
+fi
+
+requote_args ()
+{
+    sed -e 's/.*configure //' -e 's/=\(\([^"'"'"'-]\|-[^-]\| \)*\)\( \|$\)/="\1" /g'
+}
+
+new_args=`echo $@ | requote_args`
+
+old_args=""
+if test $# -eq 0 && test -f config.log; then
+    old_args=`grep '\$ ./configure' config.log | requote_args`
+    echo "re-using arguments from last configure: $old_args";
+fi
+
+touch ChangeLog
+
+aclocal $ACLOCAL_FLAGS || exit 1;
+#automake --gnu --add-missing --copy || exit 1;
+#intltoolize --copy --force --automake
+autoconf || exit 1;
+if test "x$NOCONFIGURE" = "x"; then
+    eval `echo ./configure $new_args $old_args`
+else
+    echo "Skipping configure process."
+fi
diff --git a/configure b/configure
deleted file mode 100755
index 6a8de10..0000000
--- a/configure
+++ /dev/null
@@ -1,31179 +0,0 @@
-#! /bin/sh
-# From configure.in Revision: 1.290  .
-# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59.
-#
-# Copyright (C) 2003 Free Software Foundation, Inc.
-# This configure script is free software; the Free Software Foundation
-# gives unlimited permission to copy, distribute and modify it.
-## --------------------- ##
-## M4sh Initialization.  ##
-## --------------------- ##
-
-# Be Bourne compatible
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-  emulate sh
-  NULLCMD=:
-  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-  # is contrary to our usage.  Disable this feature.
-  alias -g '${1+"$@"}'='"$@"'
-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
-  set -o posix
-fi
-DUALCASE=1; export DUALCASE # for MKS sh
-
-# Support unset when possible.
-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-  as_unset=unset
-else
-  as_unset=false
-fi
-
-
-# Work around bugs in pre-3.0 UWIN ksh.
-$as_unset ENV MAIL MAILPATH
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-for as_var in \
-  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
-  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
-  LC_TELEPHONE LC_TIME
-do
-  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
-    eval $as_var=C; export $as_var
-  else
-    $as_unset $as_var
-  fi
-done
-
-# Required to use basename.
-if expr a : '\(a\)' >/dev/null 2>&1; then
-  as_expr=expr
-else
-  as_expr=false
-fi
-
-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
-  as_basename=basename
-else
-  as_basename=false
-fi
-
-
-# Name of the executable.
-as_me=`$as_basename "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-	 X"$0" : 'X\(//\)$' \| \
-	 X"$0" : 'X\(/\)$' \| \
-	 .     : '\(.\)' 2>/dev/null ||
-echo X/"$0" |
-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
-  	  /^X\/\(\/\/\)$/{ s//\1/; q; }
-  	  /^X\/\(\/\).*/{ s//\1/; q; }
-  	  s/.*/./; q'`
-
-
-# PATH needs CR, and LINENO needs CR and PATH.
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
-  echo "#! /bin/sh" >conf$$.sh
-  echo  "exit 0"   >>conf$$.sh
-  chmod +x conf$$.sh
-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
-    PATH_SEPARATOR=';'
-  else
-    PATH_SEPARATOR=:
-  fi
-  rm -f conf$$.sh
-fi
-
-
-  as_lineno_1=$LINENO
-  as_lineno_2=$LINENO
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
-  test "x$as_lineno_1" != "x$as_lineno_2" &&
-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
-  # Find who we are.  Look in the path if we contain no path at all
-  # relative or not.
-  case $0 in
-    *[\\/]* ) as_myself=$0 ;;
-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
-  IFS=$as_save_IFS
-  test -z "$as_dir" && as_dir=.
-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-done
-
-       ;;
-  esac
-  # We did not find ourselves, most probably we were run as `sh COMMAND'
-  # in which case we are not to be found in the path.
-  if test "x$as_myself" = x; then
-    as_myself=$0
-  fi
-  if test ! -f "$as_myself"; then
-    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
-   { (exit 1); exit 1; }; }
-  fi
-  case $CONFIG_SHELL in
-  '')
-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
-do
-  IFS=$as_save_IFS
-  test -z "$as_dir" && as_dir=.
-  for as_base in sh bash ksh sh5; do
-	 case $as_dir in
-	 /*)
-	   if ("$as_dir/$as_base" -c '
-  as_lineno_1=$LINENO
-  as_lineno_2=$LINENO
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
-  test "x$as_lineno_1" != "x$as_lineno_2" &&
-  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
-	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
-	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
-	     CONFIG_SHELL=$as_dir/$as_base
-	     export CONFIG_SHELL
-	     exec "$CONFIG_SHELL" "$0" ${1+"$@"}
-	   fi;;
-	 esac
-       done
-done
-;;
-  esac
-
-  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
-  # uniformly replaced by the line number.  The first 'sed' inserts a
-  # line-number line before each line; the second 'sed' does the real
-  # work.  The second script uses 'N' to pair each line-number line
-  # with the numbered line, and appends trailing '-' during
-  # substitution so that $LINENO is not a special case at line end.
-  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
-  sed '=' <$as_myself |
-    sed '
-      N
-      s,$,-,
-      : loop
-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
-      t loop
-      s,-$,,
-      s,^['$as_cr_digits']*\n,,
-    ' >$as_me.lineno &&
-  chmod +x $as_me.lineno ||
-    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
-   { (exit 1); exit 1; }; }
-
-  # Don't try to exec as it changes $[0], causing all sort of problems
-  # (the dirname of $[0] is not the place where we might find the
-  # original and so on.  Autoconf is especially sensible to this).
-  . ./$as_me.lineno
-  # Exit status is that of the last command.
-  exit
-}
-
-
-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
-  *c*,-n*) ECHO_N= ECHO_C='
-' ECHO_T='	' ;;
-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
-esac
-
-if expr a : '\(a\)' >/dev/null 2>&1; then
-  as_expr=expr
-else
-  as_expr=false
-fi
-
-rm -f conf$$ conf$$.exe conf$$.file
-echo >conf$$.file
-if ln -s conf$$.file conf$$ 2>/dev/null; then
-  # We could just check for DJGPP; but this test a) works b) is more generic
-  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
-  if test -f conf$$.exe; then
-    # Don't use ln at all; we don't have any links
-    as_ln_s='cp -p'
-  else
-    as_ln_s='ln -s'
-  fi
-elif ln conf$$.file conf$$ 2>/dev/null; then
-  as_ln_s=ln
-else
-  as_ln_s='cp -p'
-fi
-rm -f conf$$ conf$$.exe conf$$.file
-
-if mkdir -p . 2>/dev/null; then
-  as_mkdir_p=:
-else
-  test -d ./-p && rmdir ./-p
-  as_mkdir_p=false
-fi
-
-as_executable_p="test -f"
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-# IFS
-# We need space, tab and new line, in precisely that order.
-as_nl='
-'
-IFS=" 	$as_nl"
-
-# CDPATH.
-$as_unset CDPATH
-
-
-# Name of the host.
-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-# so uname gets run too.
-ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
-
-exec 6>&1
-
-#
-# Initializations.
-#
-ac_default_prefix=/usr/local
-ac_config_libobj_dir=.
-cross_compiling=no
-subdirs=
-MFLAGS=
-MAKEFLAGS=
-SHELL=${CONFIG_SHELL-/bin/sh}
-
-# Maximum number of lines to put in a shell here document.
-# This variable seems obsolete.  It should probably be removed, and
-# only ac_max_sed_lines should be used.
-: ${ac_max_here_lines=38}
-
-# Identity of this package.
-PACKAGE_NAME=
-PACKAGE_TARNAME=
-PACKAGE_VERSION=
-PACKAGE_STRING=
-PACKAGE_BUGREPORT=
-
-# Factoring default headers for most tests.
-ac_includes_default="\
-#include <stdio.h>
-#if HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-#if HAVE_SYS_STAT_H
-# include <sys/stat.h>
-#endif
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <stddef.h>
-#else
-# if HAVE_STDLIB_H
-#  include <stdlib.h>
-# endif
-#endif
-#if HAVE_STRING_H
-# if !STDC_HEADERS && HAVE_MEMORY_H
-#  include <memory.h>
-# endif
-# include <string.h>
-#endif
-#if HAVE_STRINGS_H
-# include <strings.h>
-#endif
-#if HAVE_INTTYPES_H
-# include <inttypes.h>
-#else
-# if HAVE_STDINT_H
-#  include <stdint.h>
-# endif
-#endif
-#if HAVE_UNISTD_H
-# include <unistd.h>
-#endif"
-
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS EGREP AWK SED LOCAL_SOLENV _solenv UPD SOURCEVERSION build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os GNUTAR OSVERSION PTHREAD_CFLAGS PTHREAD_LIBS ENABLE_CRASHDUMP VC_STANDARD ENABLE_WERROR ENABLE_DEBUG PRODUCT PROFULLSWITCH PROEXT ENABLE_SYMBOLS DISABLE_STRIP ENABLE_CUPS ENABLE_FONTCONFIG TARFILE_LOCATION DO_FETCH_TARBALLS WITH_BINFILTER ENABLE_DIRECTX DISABLE_ACTIVEX DISABLE_ATL ENABLE_RPATH WITH_MYSPELL_DICTS SYSTEM_DICTS DICT_SYSTEM_DIR HYPH_SYSTEM_DIR THES_SYSTEM_DIR WITH_MINGWIN SHELLPATH GCC_HOME CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT COMPATH GCCVER HAVE_L
 D_BSYMBOLIC_FUNCTIONS ENABLE_PCH NO_HIDS GNUMAKE _cc HAVE_LD_HASH_STYLE PERL MSPDB_PATH COMEX USE_MINGW MIDL_PATH CSC_PATH FRAME_HOME CPP CXX CXXFLAGS ac_ct_CXX CXXCPP SIZEOF_LONG WORDS_BIGENDIAN LFS_CFLAGS ENABLE_VBA VBA_EXTENSION PAM NEW_SHADOW_API PAM_LINK CRYPT_LINK GXX_INCLUDE_PATH MINGW_LIB_INCLUDE_PATH MINGW_BACKWARD_INCLUDE_PATH MINGW_CLIB_DIR MINGW_SHARED_GCCLIB MINGW_GCCLIB_EH MINGW_SHARED_GXXLIB MINGW_GCCDLL MINGW_GXXDLL EXCEPTIONS STLPORT4 STLPORT_VER USE_SYSTEM_STL USE_CCACHE CCACHE HAVE_GCC_VISIBILITY_FEATURE ALLOC BUILD_VER_STRING SOLAR_JAVA JAVAINTERPRETER JAVACOMPILER JAVACISGCJ JAVADOC AWTLIB JAVAAOTCOMPILER JAVA_HOME JDK JAVAFLAGS JAVAIFLAGS DMAKE BUILD_DMAKE EPM DPKG PKGMK BUILD_EPM RPM PKGFORMAT GPERF BUILD_STAX MINGWCXX ac_ct_MINGWCXX MINGWSTRIP ac_ct_MINGWSTRIP BUILD_UNOWINREG SYSTEM_STDLIBS SYSTEM_ZLIB SYSTEM_JPEG SYSTEM_EXPAT PKG_CONFIG LIBWPD_CFLAGS LIBWPD_LIBS SYSTEM_LIBWPD CPPUNIT_CFLAGS CPPUNIT_LIBS SYSTEM_CPPUNIT FREETYPE_CFLAGS FREETYPE_LIBS US
 E_FT_EMBOLDEN LIBXSLT_CFLAGS LIBXSLT_LIBS XSLTPROC SYSTEM_LIBXSLT LIBXML_CFLAGS LIBXML_LIBS SYSTEM_LIBXML PYTHON PYTHON_VERSION PYTHON_PREFIX PYTHON_EXEC_PREFIX PYTHON_PLATFORM pythondir pkgpythondir pyexecdir pkgpyexecdir BZIP2 SYSTEM_PYTHON PYTHON_CFLAGS PYTHON_LIBS HOME SYSTEM_DB DB_VERSION DB_INCLUDES DB_JAR SYSTEM_LUCENE LUCENE_CORE_JAR LUCENE_ANALYZERS_JAR ENABLE_MYSQLC MYSQLCONFIG SYSTEM_MYSQL MYSQL_INC MYSQL_LIB MYSQL_DEFINES LIBMYSQL_PATH SYSTEM_MYSQL_CPPCONN SYSTEM_HSQLDB HSQLDB_JAR SYSTEM_BSH BSH_JAR SERIALIZER_JAR SYSTEM_SAXON SAXON_JAR CURLCONFIG SYSTEM_CURL CURL_CFLAGS CURL_LIBS SYSTEM_MDDS SYSTEM_BOOST SYSTEM_VIGRA SYSTEM_ODBC_HEADERS WITH_MOZILLA WITH_LDAP WITH_OPENLDAP MOZ_NSS_CFLAGS MOZ_NSS_LIBS NSS_LIB MOZ_NSPR_CFLAGS MOZ_NSPR_LIBS NSPR_LIB MOZILLAXPCOM_CFLAGS MOZILLAXPCOM_LIBS MOZILLA_VERSION MOZILLA_TOOLKIT MOZGTK2_CFLAGS MOZGTK2_LIBS MOZLIBREQ_CFLAGS MOZLIBREQ_LIBS BUILD_MOZAB ENABLE_NSS_MODULE MOZILLABUILD SYSTEM_MOZILLA MOZ_FLAVOUR MOZ_INC MOZ_LIB MOZ
 _LIB_XPCOM MOZ_LDAP_CFLAGS SYSTEM_SANE_HEADER SYSTEM_GENBRK SYSTEM_GENCCODE SYSTEM_GENCMN SYSTEM_ICU GRAPHITE_CFLAGS GRAPHITE_LIBS ENABLE_GRAPHITE SYSTEM_GRAPHITE X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS XINC XLIB XAU_LIBS DISABLE_XAW SYSTEM_XRENDER_HEADERS XRENDER_LINK XRANDR_CFLAGS XRANDR_LIBS XRANDR_DLOPEN ENABLE_RANDR DISABLE_NEON NEON_CFLAGS NEON_LIBS SYSTEM_NEON NEON_VERSION OPENSSL_CFLAGS OPENSSL_LIBS SYSTEM_OPENSSL ENABLE_AGG AGG_CFLAGS AGG_LIBS SYSTEM_AGG AGG_VERSION REDLAND_CFLAGS REDLAND_LIBS SYSTEM_REDLAND HUNSPELL_CFLAGS HUNSPELL_LIBS SYSTEM_HUNSPELL SYSTEM_HYPH HYPHEN_LIB MYTHES_CFLAGS MYTHES_LIBS SYSTEM_MYTHES SYSTEM_LPSOLVE HAVE_GETOPT HAVE_READDIR_R SYSTEM_LIBC PSDK_HOME WINDOWS_VISTA_PSDK DIRECTXSDK_HOME DIRECTXSDK_LIB NSIS_PATH BISON FLEX PATCH GNUCP GNUPATCH CYGWIN_PATH ML_EXE ASM_HOME ZIP UNZIP ZIP_HOME ENABLE_GTK ENABLE_KDE ENABLE_KDE4 GCONF_CFLAGS GCONF_LIBS ENABLE_GCONF GNOMEVFS_CFLAGS GNOMEVFS_LIBS ENABLE_GNOMEVFS GTK_CFLAGS GTK_LIBS DBUS_CFLAGS DBUS_
 LIBS GIO_CFLAGS GIO_LIBS ENABLE_GIO ENABLE_DBUS ENABLE_SYSTRAY_GTK CAIRO_CFLAGS CAIRO_LIBS ENABLE_CAIRO BUILD_PIXMAN SYSTEM_CAIRO ENABLE_OPENGL ENABLE_PRESENTER_EXTRA_UI ENABLE_MINIMIZER ENABLE_PRESENTER_SCREEN POPPLER_CFLAGS POPPLER_LIBS ENABLE_PDFIMPORT SYSTEM_POPPLER ENABLE_MEDIAWIKI SYSTEM_SERVLETAPI SERVLETAPI_JAR ENABLE_REPORTBUILDER SYSTEM_JFREEREPORT SAC_JAR LIBXML_JAR FLUTE_JAR JFREEREPORT_JAR LIBBASE_JAR LIBLAYOUT_JAR LIBLOADER_JAR LIBFORMULA_JAR LIBREPOSITORY_JAR LIBFONTS_JAR LIBSERIALIZER_JAR SYSTEM_APACHE_COMMONS COMMONS_CODEC_JAR COMMONS_LANG_JAR COMMONS_HTTPCLIENT_JAR COMMONS_LOGGING_JAR MOC KDE_CFLAGS KDE_LIBS MOC4 KDE4_CFLAGS KDE4_LIBS ENABLE_LOCKDOWN GOBJECT_CFLAGS GOBJECT_LIBS ENABLE_EVOAB2 ENABLE_KAB WITH_FONTS WITHOUT_PPDS WITHOUT_AFMS SCPDEFS USE_XINERAMA XINERAMA_LINK ANT ANT_HOME ANT_LIB OOO_JUNIT_JAR WITH_LANG WITH_POOR_HELP_LOCALIZATIONS WITH_DICT INTRO_BITMAPS ABOUT_BITMAPS OOO_VENDOR UNIXWRAPPERNAME ENABLE_STATIC_GTK ENABLE_LAYOUT VERBOSE nodep LO
 CAL_SOLVER BUILD_TYPE LIBOBJS LTLIBOBJS'
-ac_subst_files=''
-
-# Initialize some variables set by options.
-ac_init_help=
-ac_init_version=false
-# The variables have the same names as the options, with
-# dashes changed to underlines.
-cache_file=/dev/null
-exec_prefix=NONE
-no_create=
-no_recursion=
-prefix=NONE
-program_prefix=NONE
-program_suffix=NONE
-program_transform_name=s,x,x,
-silent=
-site=
-srcdir=
-verbose=
-x_includes=NONE
-x_libraries=NONE
-
-# Installation directory options.
-# These are left unexpanded so users can "make install exec_prefix=/foo"
-# and all the variables that are supposed to be based on exec_prefix
-# by default will actually change.
-# Use braces instead of parens because sh, perl, etc. also accept them.
-bindir='${exec_prefix}/bin'
-sbindir='${exec_prefix}/sbin'
-libexecdir='${exec_prefix}/libexec'
-datadir='${prefix}/share'
-sysconfdir='${prefix}/etc'
-sharedstatedir='${prefix}/com'
-localstatedir='${prefix}/var'
-libdir='${exec_prefix}/lib'
-includedir='${prefix}/include'
-oldincludedir='/usr/include'
-infodir='${prefix}/info'
-mandir='${prefix}/man'
-
-ac_prev=
-for ac_option
-do
-  # If the previous option needs an argument, assign it.
-  if test -n "$ac_prev"; then
-    eval "$ac_prev=\$ac_option"
-    ac_prev=
-    continue
-  fi
-
-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
-
-  # Accept the important Cygnus configure options, so we can diagnose typos.
-
-  case $ac_option in
-
-  -bindir | --bindir | --bindi | --bind | --bin | --bi)
-    ac_prev=bindir ;;
-  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
-    bindir=$ac_optarg ;;
-
-  -build | --build | --buil | --bui | --bu)
-    ac_prev=build_alias ;;
-  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
-    build_alias=$ac_optarg ;;
-
-  -cache-file | --cache-file | --cache-fil | --cache-fi \
-  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
-    ac_prev=cache_file ;;
-  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
-  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
-    cache_file=$ac_optarg ;;
-
-  --config-cache | -C)
-    cache_file=config.cache ;;
-
-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
-    ac_prev=datadir ;;
-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
-  | --da=*)
-    datadir=$ac_optarg ;;
-
-  -disable-* | --disable-*)
-    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-   { (exit 1); exit 1; }; }
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
-    eval "enable_$ac_feature=no" ;;
-
-  -enable-* | --enable-*)
-    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
-   { (exit 1); exit 1; }; }
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
-    case $ac_option in
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
-      *) ac_optarg=yes ;;
-    esac
-    eval "enable_$ac_feature='$ac_optarg'" ;;
-
-  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-  | --exec | --exe | --ex)
-    ac_prev=exec_prefix ;;
-  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
-  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
-  | --exec=* | --exe=* | --ex=*)
-    exec_prefix=$ac_optarg ;;
-
-  -gas | --gas | --ga | --g)
-    # Obsolete; use --with-gas.
-    with_gas=yes ;;
-
-  -help | --help | --hel | --he | -h)
-    ac_init_help=long ;;
-  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
-    ac_init_help=recursive ;;
-  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
-    ac_init_help=short ;;
-
-  -host | --host | --hos | --ho)
-    ac_prev=host_alias ;;
-  -host=* | --host=* | --hos=* | --ho=*)
-    host_alias=$ac_optarg ;;
-
-  -includedir | --includedir | --includedi | --included | --include \
-  | --includ | --inclu | --incl | --inc)
-    ac_prev=includedir ;;
-  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
-  | --includ=* | --inclu=* | --incl=* | --inc=*)
-    includedir=$ac_optarg ;;
-
-  -infodir | --infodir | --infodi | --infod | --info | --inf)
-    ac_prev=infodir ;;
-  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
-    infodir=$ac_optarg ;;
-
-  -libdir | --libdir | --libdi | --libd)
-    ac_prev=libdir ;;
-  -libdir=* | --libdir=* | --libdi=* | --libd=*)
-    libdir=$ac_optarg ;;
-
-  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
-  | --libexe | --libex | --libe)
-    ac_prev=libexecdir ;;
-  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
-  | --libexe=* | --libex=* | --libe=*)
-    libexecdir=$ac_optarg ;;
-
-  -localstatedir | --localstatedir | --localstatedi | --localstated \
-  | --localstate | --localstat | --localsta | --localst \
-  | --locals | --local | --loca | --loc | --lo)
-    ac_prev=localstatedir ;;
-  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
-    localstatedir=$ac_optarg ;;
-
-  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-    ac_prev=mandir ;;
-  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
-    mandir=$ac_optarg ;;
-
-  -nfp | --nfp | --nf)
-    # Obsolete; use --without-fp.
-    with_fp=no ;;
-
-  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
-  | --no-cr | --no-c | -n)
-    no_create=yes ;;
-
-  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
-  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
-    no_recursion=yes ;;
-
-  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
-  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
-  | --oldin | --oldi | --old | --ol | --o)
-    ac_prev=oldincludedir ;;
-  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
-  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
-  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
-    oldincludedir=$ac_optarg ;;
-
-  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
-    ac_prev=prefix ;;
-  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
-    prefix=$ac_optarg ;;
-
-  -program-prefix | --program-prefix | --program-prefi | --program-pref \
-  | --program-pre | --program-pr | --program-p)
-    ac_prev=program_prefix ;;
-  -program-prefix=* | --program-prefix=* | --program-prefi=* \
-  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
-    program_prefix=$ac_optarg ;;
-
-  -program-suffix | --program-suffix | --program-suffi | --program-suff \
-  | --program-suf | --program-su | --program-s)
-    ac_prev=program_suffix ;;
-  -program-suffix=* | --program-suffix=* | --program-suffi=* \
-  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
-    program_suffix=$ac_optarg ;;
-
-  -program-transform-name | --program-transform-name \
-  | --program-transform-nam | --program-transform-na \
-  | --program-transform-n | --program-transform- \
-  | --program-transform | --program-transfor \
-  | --program-transfo | --program-transf \
-  | --program-trans | --program-tran \
-  | --progr-tra | --program-tr | --program-t)
-    ac_prev=program_transform_name ;;
-  -program-transform-name=* | --program-transform-name=* \
-  | --program-transform-nam=* | --program-transform-na=* \
-  | --program-transform-n=* | --program-transform-=* \
-  | --program-transform=* | --program-transfor=* \
-  | --program-transfo=* | --program-transf=* \
-  | --program-trans=* | --program-tran=* \
-  | --progr-tra=* | --program-tr=* | --program-t=*)
-    program_transform_name=$ac_optarg ;;
-
-  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-  | -silent | --silent | --silen | --sile | --sil)
-    silent=yes ;;
-
-  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
-    ac_prev=sbindir ;;
-  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
-  | --sbi=* | --sb=*)
-    sbindir=$ac_optarg ;;
-
-  -sharedstatedir | --sharedstatedir | --sharedstatedi \
-  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
-  | --sharedst | --shareds | --shared | --share | --shar \
-  | --sha | --sh)
-    ac_prev=sharedstatedir ;;
-  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
-  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
-  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
-  | --sha=* | --sh=*)
-    sharedstatedir=$ac_optarg ;;
-
-  -site | --site | --sit)
-    ac_prev=site ;;
-  -site=* | --site=* | --sit=*)
-    site=$ac_optarg ;;
-
-  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
-    ac_prev=srcdir ;;
-  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
-    srcdir=$ac_optarg ;;
-
-  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
-  | --syscon | --sysco | --sysc | --sys | --sy)
-    ac_prev=sysconfdir ;;
-  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
-  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
-    sysconfdir=$ac_optarg ;;
-
-  -target | --target | --targe | --targ | --tar | --ta | --t)
-    ac_prev=target_alias ;;
-  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
-    target_alias=$ac_optarg ;;
-
-  -v | -verbose | --verbose | --verbos | --verbo | --verb)
-    verbose=yes ;;
-
-  -version | --version | --versio | --versi | --vers | -V)
-    ac_init_version=: ;;
-
-  -with-* | --with-*)
-    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
-   { (exit 1); exit 1; }; }
-    ac_package=`echo $ac_package| sed 's/-/_/g'`
-    case $ac_option in
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
-      *) ac_optarg=yes ;;
-    esac
-    eval "with_$ac_package='$ac_optarg'" ;;
-
-  -without-* | --without-*)
-    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid package name: $ac_package" >&2
-   { (exit 1); exit 1; }; }
-    ac_package=`echo $ac_package | sed 's/-/_/g'`
-    eval "with_$ac_package=no" ;;
-
-  --x)
-    # Obsolete; use --with-x.
-    with_x=yes ;;
-
-  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
-  | --x-incl | --x-inc | --x-in | --x-i)
-    ac_prev=x_includes ;;
-  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
-  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
-    x_includes=$ac_optarg ;;
-
-  -x-libraries | --x-libraries | --x-librarie | --x-librari \
-  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
-    ac_prev=x_libraries ;;
-  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
-  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-    x_libraries=$ac_optarg ;;
-
-  -*) { echo "$as_me: error: unrecognized option: $ac_option
-Try \`$0 --help' for more information." >&2
-   { (exit 1); exit 1; }; }
-    ;;
-
-  *=*)
-    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-    # Reject names that are not valid shell variable names.
-    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
-      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
-   { (exit 1); exit 1; }; }
-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
-    eval "$ac_envvar='$ac_optarg'"
-    export $ac_envvar ;;
-
-  *)
-    # FIXME: should be removed in autoconf 3.0.
-    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
-      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-    ;;
-
-  esac
-done
-
-if test -n "$ac_prev"; then
-  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
-  { echo "$as_me: error: missing argument to $ac_option" >&2
-   { (exit 1); exit 1; }; }
-fi
-
-# Be sure to have absolute paths.
-for ac_var in exec_prefix prefix
-do
-  eval ac_val=$`echo $ac_var`
-  case $ac_val in
-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# Be sure to have absolute paths.
-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
-	      localstatedir libdir includedir oldincludedir infodir mandir
-do
-  eval ac_val=$`echo $ac_var`
-  case $ac_val in
-    [\\/$]* | ?:[\\/]* ) ;;
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
-   { (exit 1); exit 1; }; };;
-  esac
-done
-
-# There might be people who depend on the old broken behavior: `$host'
-# used to hold the argument of --host etc.
-# FIXME: To remove some day.
-build=$build_alias
-host=$host_alias
-target=$target_alias
-
-# FIXME: To remove some day.
-if test "x$host_alias" != x; then
-  if test "x$build_alias" = x; then
-    cross_compiling=maybe
-    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
-    If a cross compiler is detected then cross compile mode will be used." >&2
-  elif test "x$build_alias" != "x$host_alias"; then
-    cross_compiling=yes
-  fi
-fi
-
-ac_tool_prefix=
-test -n "$host_alias" && ac_tool_prefix=$host_alias-
-
-test "$silent" = yes && exec 6>/dev/null
-
-
-# Find the source files, if location was not specified.
-if test -z "$srcdir"; then
-  ac_srcdir_defaulted=yes
-  # Try the directory containing this script, then its parent.
-  ac_confdir=`(dirname "$0") 2>/dev/null ||
-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-	 X"$0" : 'X\(//\)[^/]' \| \
-	 X"$0" : 'X\(//\)$' \| \
-	 X"$0" : 'X\(/\)' \| \
-	 .     : '\(.\)' 2>/dev/null ||
-echo X"$0" |
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
-  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; }
-  	  /^X\(\/\/\)$/{ s//\1/; q; }
-  	  /^X\(\/\).*/{ s//\1/; q; }
-  	  s/.*/./; q'`
-  srcdir=$ac_confdir
-  if test ! -r $srcdir/$ac_unique_file; then
-    srcdir=..
-  fi
-else
-  ac_srcdir_defaulted=no
-fi
-if test ! -r $srcdir/$ac_unique_file; then
-  if test "$ac_srcdir_defaulted" = yes; then
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
-   { (exit 1); exit 1; }; }
-  else
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
-   { (exit 1); exit 1; }; }
-  fi
-fi
-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
-  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
-   { (exit 1); exit 1; }; }
-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
-ac_env_build_alias_set=${build_alias+set}
-ac_env_build_alias_value=$build_alias
-ac_cv_env_build_alias_set=${build_alias+set}
-ac_cv_env_build_alias_value=$build_alias
-ac_env_host_alias_set=${host_alias+set}
-ac_env_host_alias_value=$host_alias
-ac_cv_env_host_alias_set=${host_alias+set}
-ac_cv_env_host_alias_value=$host_alias
-ac_env_target_alias_set=${target_alias+set}
-ac_env_target_alias_value=$target_alias
-ac_cv_env_target_alias_set=${target_alias+set}
-ac_cv_env_target_alias_value=$target_alias
-ac_env_CC_set=${CC+set}
-ac_env_CC_value=$CC
-ac_cv_env_CC_set=${CC+set}
-ac_cv_env_CC_value=$CC
-ac_env_CFLAGS_set=${CFLAGS+set}
-ac_env_CFLAGS_value=$CFLAGS
-ac_cv_env_CFLAGS_set=${CFLAGS+set}
-ac_cv_env_CFLAGS_value=$CFLAGS
-ac_env_LDFLAGS_set=${LDFLAGS+set}
-ac_env_LDFLAGS_value=$LDFLAGS
-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
-ac_cv_env_LDFLAGS_value=$LDFLAGS
-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
-ac_env_CPPFLAGS_value=$CPPFLAGS
-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
-ac_env_CPP_set=${CPP+set}
-ac_env_CPP_value=$CPP
-ac_cv_env_CPP_set=${CPP+set}
-ac_cv_env_CPP_value=$CPP
-ac_env_CXX_set=${CXX+set}
-ac_env_CXX_value=$CXX
-ac_cv_env_CXX_set=${CXX+set}
-ac_cv_env_CXX_value=$CXX
-ac_env_CXXFLAGS_set=${CXXFLAGS+set}
-ac_env_CXXFLAGS_value=$CXXFLAGS
-ac_cv_env_CXXFLAGS_set=${CXXFLAGS+set}
-ac_cv_env_CXXFLAGS_value=$CXXFLAGS
-ac_env_CXXCPP_set=${CXXCPP+set}
-ac_env_CXXCPP_value=$CXXCPP
-ac_cv_env_CXXCPP_set=${CXXCPP+set}
-ac_cv_env_CXXCPP_value=$CXXCPP
-
-#
-# Report the --help message.
-#
-if test "$ac_init_help" = "long"; then
-  # Omit some internal or obsolete options to make the list less imposing.
-  # This message is too long to be a string in the A/UX 3.1 sh.
-  cat <<_ACEOF
-\`configure' configures this package to adapt to many kinds of systems.
-
-Usage: $0 [OPTION]... [VAR=VALUE]...
-
-To assign environment variables (e.g., CC, CFLAGS...), specify them as
-VAR=VALUE.  See below for descriptions of some of the useful variables.
-
-Defaults for the options are specified in brackets.
-
-Configuration:
-  -h, --help              display this help and exit
-      --help=short        display options specific to this package
-      --help=recursive    display the short help of all the included packages
-  -V, --version           display version information and exit
-  -q, --quiet, --silent   do not print \`checking...' messages
-      --cache-file=FILE   cache test results in FILE [disabled]
-  -C, --config-cache      alias for \`--cache-file=config.cache'
-  -n, --no-create         do not create output files
-      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
-
-_ACEOF
-
-  cat <<_ACEOF
-Installation directories:
-  --prefix=PREFIX         install architecture-independent files in PREFIX
-			  [$ac_default_prefix]
-  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
-			  [PREFIX]
-
-By default, \`make install' will install all the files in
-\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-an installation prefix other than \`$ac_default_prefix' using \`--prefix',
-for instance \`--prefix=\$HOME'.
-
-For better control, use the options below.
-
-Fine tuning of the installation directories:
-  --bindir=DIR           user executables [EPREFIX/bin]
-  --sbindir=DIR          system admin executables [EPREFIX/sbin]
-  --libexecdir=DIR       program executables [EPREFIX/libexec]
-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
-  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
-  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
-  --libdir=DIR           object code libraries [EPREFIX/lib]
-  --includedir=DIR       C header files [PREFIX/include]
-  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
-  --infodir=DIR          info documentation [PREFIX/info]
-  --mandir=DIR           man documentation [PREFIX/man]
-_ACEOF
-
-  cat <<\_ACEOF
-
-X features:
-  --x-includes=DIR    X include files are in DIR
-  --x-libraries=DIR   X library files are in DIR
-
-System types:
-  --build=BUILD     configure for building on BUILD [guessed]
-  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
-  --target=TARGET   configure for building compilers for TARGET [HOST]
-_ACEOF
-fi
-
-if test -n "$ac_init_help"; then
-
-  cat <<\_ACEOF
-
-Optional Features:
-  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-  --enable-graphite       Enables the compilation of Graphite smart font rendering
-
-  --disable-ldap          Disables the use of LDAP backend via Netscape/Mozilla
-                          or OpenLDAP LDAP SDK
-
-  --disable-fetch-external Disables fetching external tarballs from web sources.
-
-  --enable-lockdown       Enables the gconf integration work in OOo
-
-  --disable-vba           disables the vba compatibility feature
-
-  --enable-pch            EXPERIMENTAL: Enables precompiled header support for C++.
-
-  --enable-hids            Enables generation of HelpId lists.
-
-  --disable-mozilla       OO.o usually includes a strangely hacked up mozilla
-                          binary for your platform, to build without this
-                          version, use this option.
-
-  --disable-epm           OO.o includes self-packaging code, that requires
-                          epm, however epm is useless for large scale
-                          package building.
-
-  --disable-odk           OO.o includes an ODK, office development kit
-                          which some packagers may with to build without
-
-  --disable-mathmldtd     disable mathmldtd
-                          (useful for distributions that want to avoid packaging
-                          it)
-
-  --enable-evolution2     Allows the built-in evolution 2 addressbook
-                          connectivity build to be enabled.
-
-  --disable-cups          disable cups support in the psprint project
-
-  --disable-fontconfig    disable support for the fontconfig library
-
-  --disable-directx       Remove DirectX implementation for the new XCanvas
-                          interface. The DirectX support requires more stuff
-                          installed on Windows to compile.
-                          (DirectX SDK, GDI+ libs)
-
-  --disable-activex       Disable the use of ActiveX for windows build.
-                          This switch is mandatory when using VC++ 2005/2008 Express.
-
-  --disable-atl          Disable the use of ATL for windows build.
-                          This switch is mandatory when using VC++ 2005/2008 Express.
-
-  --enable-symbols        Include debugging symbols in output.
-                          WARNING - a complete build needs 8 Gb of space and
-                          takes much longer. (enables -g compiler flag)
-
-                          --enable-symbols=SMALL sets the gcc -g1 setting
-                          which is smaller.
-
-                          Enabling symbols disables the stripping of the solver
-                          (--disable-strip-solver).
-
-  --disable-strip-solver  Disable the stripping of the solver.
-                          By default the solver is stripped unless a build with
-                          debugging symbols (--enable-symbols) is requested.
-
-                          This switch allows to override this setting.
-
-  --enable-werror         Turn warnings to errors. (Has no effect in modules
-                          where the treating of warnings as errors is disabled
-                          explicitely)
-
-  --enable-debug          Include debugging symbols from --enable-symbols
-                          plus extra debugging code.  Extra large build!
-                          (enables -g compiler flag and dmake debug=true)
-
-  --enable-dbgutil        Include additional debugging utilities, such as
-                          assertions, object counting, etc. Larger build.
-                          Independent from --enable-debug
-
-  --enable-crashdump      Enable the crashdump feature code.
-
-  --enable-cl-standard    For Microsoft C/C++ compiler users, use non-optimizing
-                          standard compiler. ( This just disavles optimization
-                          options and therefore removes a lot of warnings when
-                          using the cheaper standard compiler. )
-
-  --disable-gtk           Determines whether to use Gtk+ vclplug on platforms
-                          where Gtk+ is available.
-
-  --disable-systray       Determines whether to build the systray quickstarter.
-
-  --enable-cairo          Determines whether to use Cairo library on
-                          platforms where Cairo is available.
-
-  --enable-opengl         Determines whether to build the OpenGL 3D slide
-                          transitions component
-
-  --enable-dbus           Determines whether to enable presentation mode
-                          screensaver control under GNOME via DBUS
-
-  --disable-gconf         Determines whether to use the GConf support
-
-  --disable-gnome-vfs     Determines whether to use the Gnome Virtual Filing
-                          System on platforms where that VFS is available
-
-  --enable-gio            Determines whether to use the GIO support
-
-  --enable-static-gtk     Modules that are linked against gtk libraries use
-                          the static libraries instead of the dynamic ones.
-                          (enables -Bstatic linker flag for gtk libraries)
-
-  --enable-layout         Enable the compilation and use of layout dialogs
-
-  --disable-build-mozilla Use this option if you do not want to build the
-                          mozilla components from the mozilla source code but
-                          take precompiled zips
-
-  --disable-nss-module    Whether to use provided NSS module
-
-  --enable-kde            Determines whether to use Qt/KDE vclplug on platforms
-                          where Qt and KDE are available.
-
-  --disable-kdeab         Disable the KDE address book support
-
-  --enable-kde4            Determines whether to use Qt4/KDE4 vclplug on platforms
-                          where Qt4 and KDE4 are available. May be used with --enable-kde
-                          if you want to support both KDE3 and KDE4.
-
-  --disable-binfilter     Disable legacy binary file formats filters
-
-  --disable-rpath         Disable the use of relative paths in shared libraries
-
-  --disable-pam           Disable pam support.
-
-  --enable-pam-link       link with libpam instead of dynamically open it
-
-  --disable-crypt-link    disable linking with libcrypt instead of dynamically
-                          open it (needed for ancient GNU/Linux distributions
-                          without crypt()/libcrypt)
-
-  --enable-xrender-link   link with libXrender instead of dynamically open it
-
-  --disable-randr         disable RandR support in the vcl project
-
-  --disable-randr-link    disable linking with libXrandr, instead dynamically
-                           open it at runtime
-
-  --enable-mysql-connector     enables the build of the MySQL Connector/OOo extension.
-                                This requires access to the MySQL Connector/C (aka libmysql) to be given, too, with
-                                either the --with-system-mysql or --with-libmysql-path option.
-
-  --enable-presenter-extra-ui   enables extra functionality during slideshow,
-                                 e.g. selecting pen color, erasing drawings etc.
-
-  --enable-minimizer          enables the build of the Presentation Minimizer extension
-
-  --enable-presenter-console          enables the build of the Presenter Console extension
-
-  --enable-pdfimport          enables the build of the PDF Import extension and xpdf
-
-  --enable-wiki-publisher      enables the build of the Wiki Publisher extension
-
-  --enable-report-builder  enables the build of the Report Builder extension
-
-  --disable-neon          Disable neon and the compilation of webdav binding
-
-  --disable-Xaw           Disables the use of Xaw for the Netscape/Mozilla
-                           plugin
-
-  --enable-gcjaot         Build with[out] using Ahead of Time java compilation
-                          support to speed up buildsi by compiling the jars also
-                          to native code..
-                          --enable-gcjaot is only known to work with bytecode
-                          created with gcj or ecj
-
-  --enable-check-only     Use this option option if you just want to check your
-                          environment.  This option stops the generation of an
-                          ????env.set
-
-                          Usage: --enable-check-only=yes
-
-  --enable-ccache-skip    [default=auto] allow the use of --ccache-skip to
-                          escape compiler flags that would otherwise prevent
-                          caching of the result (currently used on Mac only)
-                          NOTE: requires patched version because of a bug in
-                          ccache (see issue 104567 for details and patch)
-                          explicitly enable if your version of ccache doesn't
-                          identify as version 2.4_OOo
-
-  --enable-verbose        Increase build verbosity.
-  --disable-verbose       Decrease build verbosity.
-
-  --disable-dependency-tracking  Disables generation of dependency information.
-
-  --disable-largefile     omit support for large files
-
-Optional Packages:
-  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
-  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
-  --with-gnu-patch        Specify location of GNU patch on Solaris or FreeBSD
-
-  --without-agg           Disable the use of agg altogether
-
-  --with-gnu-cp           Specify location of GNU cp on Solaris or FreeBSD
-
-  --with-system-graphite    use graphite library already installed on system
-
-  --with-external-tar=<TARFILE PATH>   Specify path to tarfiles manually
-  --with-openldap         Enables the use of the OpenLDAP LDAP SDK instead
-                          of the Netscape/Mozilla one
-
-  --with-vba-package-format   specify package format for vba compatibility api.
-                          Specifying  "builtin" means the api component and
-                          associated type library are  part of the installation set.
-                          Specifying "extn" creates an uno extension that is
-                          part of the installation set ( located in the program
-                          directory ) that MUST be optionly registered using
-                          either the unopkg executeable or the extension manager
-                          gui.
-
-                          Note: "builtin" is the default, "extn" can cause
-                          problems.
-                          Usage: --with-vba-package-format="builtin" or
-                                 --with-vba-package-format="extn"
-
-  --without-fonts         OOo includes some third-party fonts to provide a reliable
-                          basis for help content, templates, samples, etc.
-                          When these fonts are already known to be available on the
-                          system then you should use this option.
-
-  --without-ppds          Removes Postscript Printer definition files from
-                          openoffice.org installation set, for people building
-                          for specific distributions where PPDs are known to be
-                          already available (every recent distro with CUPS
-                          backend)
-
-  --without-afms          Removes bitmap font files from openoffice.org
-                          installation set, for people building for specific
-                          distributions where AFM files or TrueType Fonts
-                          are known to be available.
-
-  --with-epm		  Decides which epm to use. Default is to use
-			  the one from the system if one is built. When
-			  either this is not there or you say =internal
-			  epm will be built.
-
-  --with-package-format   specify package format(s) for OOo installsets.
-                          Default is "normal" one of the OS/Distribution.
-
-                          Usage: --with-package-format="foo bar"
-
-  --with-system-stdlibs   use libstdc++/libgcc_s already on system
-
-  --with-system-cairo      Use Cairo libraries already on system
-
-  --with-mozilla-version  Choose which version of mozilla to use while building
-                          mozilla. Default: 1.7.5.
-                          Note that not all versions are supported.
-
-  --with-mozilla-toolkit  Choose which GUI toolkit to use while building mozilla
-                          components. Default: gtk2
-
-  --without-myspell-dicts Removes myspell dictionaries from openoffice.org
-                          installation set, for people building for specific
-                          distributions where the myspell dictionaries are
-                          installed from other sources
-
-  --with-system-dicts    Use dictionaries from system paths- Specify
-                         them via --with-{dict,hyph,thes}-path=/path
-			 if you want to override the default ones
-
-  --with-external-dict-dir Specify external dictionary dir
-
-  --with-external-hyph-dir Specify external hyphenation pattern dir
-
-  --with-external-thes-dir Specify external thesaurus dir
-
-  --with-system-libs      Use libs already on system -- enables all
-                          --with-system-* flags except mozilla and
-                          odbc/sane/xrender-header(s)
-
-  --with-system-headers   Use headers already on system -- enables all
-                          --with-system-* flags for external packages
-                          whose headers are the only entities used i.e.
-                          boost/vigra/odbc/sane/xrender-header(s)
-
-  --without-system-jars   When building with --with-system-libs, also the
-                          needed jars are expected on the system. Use this to
-                          disable that.
-                          (except for the db case where --with-system-db
-                          *has to* imply using the db.jar from there, too)
-
-  --with-system-zlib      Use zlib already on system
-
-  --with-system-openssl   Use OpenSSL already on system
-
-  --with-system-jpeg      Use jpeg already on system
-
-  --with-system-expat     Use expat already on system
-
-  --with-system-libwpd    Use libwpd already on system
-
-  --with-system-libxml    Use libxml already on system
-
-  --with-system-python    Use python already on system
-
-  --with-system-icu       Use icu already on system
-
-  --with-system-poppler   Use poppler already on system
-
-  --with-system-db        Use berkeley db already on system
-
-  --with-system-lucene    Use lucene already on system
-
-  --with-lucene-core-jar=JARFILE   Specify path to jarfile manually
-  --with-lucene-analyzers-jar=JARFILE   Specify path to jarfile manually
-  --with-system-mysql          Use MySQL libraries already on system, for building the MySQL Connector/OOo extension.
-                                Requires MYSQLCONFIG to point to the mysql_config executable.
-
-  --with-libmysql-path         Use Connector/C (libmysql) installation for building the MySQL Connector/OOo extension.
-
-                                Usage: --with-libmysql-path=<absolute path to your Connector/C installation>
-
-  --with-system-mysql-cppconn  Use MySQL C++ Connector libraries already on system
-
-  --with-system-hsqldb    Use hsqldb already on system
-
-  --with-hsqldb-jar=JARFILE   Specify path to jarfile manually
-  --with-system-beanshell Use beanshell already on system
-
-  --with-beanshell-jar=JARFILE   Specify path to jarfile manually
-  --with-commons-codec-jar=JARFILE   Specify path to jarfile manually
-  --with-commons-lang-jar=JARFILE   Specify path to jarfile manually
-  --with-commons-httpclient-jar=JARFILE   Specify path to jarfile manually
-  --with-commons-logging-jar=JARFILE   Specify path to jarfile manually
-  --servlet-api-jar=JARFILE   Specify path to jarfile manually
-  --with-system-jfreereport      Use JFreeReport already on system
-
-  --with-sac-jar=JARFILE   Specify path to jarfile manually
-  --with-libxml-jar=JARFILE   Specify path to jarfile manually
-  --with-flute-jar=JARFILE   Specify path to jarfile manually
-  --with-jfreereport-jar=JARFILE   Specify path to jarfile manually
-  --with-liblayout-jar=JARFILE   Specify path to jarfile manually
-  --with-libloader-jar=JARFILE   Specify path to jarfile manually
-  --with-libformula-jar=JARFILE   Specify path to jarfile manually
-  --with-librepository-jar=JARFILE   Specify path to jarfile manually
-  --with-libfonts-jar=JARFILE   Specify path to jarfile manually
-  --with-libserializer-jar=JARFILE   Specify path to jarfile manually
-  --with-libbase-jar=JARFILE   Specify path to jarfile manually
-  --with-system-saxon     Use saxon already on system
-
-  --with-saxon-jar=JARFILE   Specify path to jarfile manually
-  --with-system-libxslt   Use libxslt already on system
-
-  --with-system-odbc-headers     Use the odbc headers already on system
-
-  --with-system-sane-header      Use sane.h already on system
-
-  --with-system-xrender-headers  Use XRender headers already on system
-
-  --with-system-curl      Use curl already on system
-
-  --with-system-boost     Use boost already on system
-
-  --with-system-mdds      Use mdds already on system
-
-  --with-system-vigra     Use vigra already on system
-
-  --with-system-neon      Use neon already on system
-
-  --with-system-agg       Use AGG already on system
-
-  --with-system-hunspell   Use libhunspell already on system
-
-  --with-system-mythes    Use mythes already on system
-
-  --with-system-altlinuxhyph    Use ALTLinuxhyph already on system
-
-  --with-system-lpsolve         Use lpsolve already on system
-
-  --with-system-cppunit         Use cppunit already on system
-
-  --with-system-redland   Use redland library already on system
-
-  --with-system-mozilla   Use mozilla already on system. Note that some
-                          components cannot be built against a contemporary
-                          mozilla. The flavour used can be specified by
-                          --with-system-mozilla=<flavour>. Supported are:
-                          libxul (default), xulrunner, firefox, seamonkey,
-                          mozilla
-
-  --with-stlport         The location that STLport is installed in. The STL
-                          header files are assumed to be in
-                          stlport-home/stlport and the STLPort library in
-                          stlport-home/lib.
-
-                          Usage: --with-stlport=<absolute path to stlport home>
-
-                          Warning!!, disabling using --without-stlport or
-                          enabling using --with-stlport on a platform that
-                          defaults to the opposite will break ABI compatability
-
-  --with-jdk-home         if you have installed JDK 1.3 or later on your system
-                          please supply the path here.
-                          Note that this is not the location of the Java binary
-                          but the location of the entire distribution.
-
-                          Usage: --with-jdk-home=<absolute path to JDK home>
-
-  --with-gxx-include-path if you want to override the autodetected g++ include
-                          path.
-
-                          Usage: --with-gxx-include-path=<absolute path to g++ include dir>
-
-  --with-java             Build with[out] Java support.  If you use
-                          --without-java/--with-java=no then the build will have
-                          no support for Java components, applets, accessibility
-                          or XML filters.
-
-  --with-ant-home         If you have installed Jakarta Ant on your system,
-                          please supply the path here.
-                          Note that this is not the location of the Ant binary
-                          but the location of the entire distribution.
-
-                          Usage: --with-ant-home=<absolute path to Ant home>
-
-  --with-junit            Specifies the JUnit 4 jar file to use for JUnit-based
-                          tests.  --without-junit disables those tests.  Not
-                          relevant in the --without-java case.
-
-                          Usage: --with-junit=<absolute path to JUnit 4 jar>
-
-  --with-perl-home        If you have installed the Perl 5 Distribution, on your
-                          system, please supply the path here.
-                          Note that this is not the location of the Perl binary
-                          but the location of the entire distribution.
-
-                          Usage: --with-perl-home=<absolute path to Perl 5 home>
-
-  --with-cl-home          For Windows NT users, please supply the path
-                          for the Microsoft C/C++ compiler.
-                          Note that this is not the location of the compiler
-                          binary but the location of the entire distribution.
-
-                          Usage: --with-cl-home=<absolute path to Microsoft C/C++ compiler home>
-
-  --with-mspdb-path       For Microsoft C/C++ compiler users, please supply the
-                          path pointing to the mspdb71.dll (.NET 2003).
-
-                          Usage: --with-mspdb-path=<absolute path to mspdb71.dll>
-
-  --with-midl-path        For Microsoft C/C++ .NET compiler users, please supply
-                          the path pointing to the midl.exe.
-
-                          Usage: --with-midl-path=<absolute path to midl.exe>
-
-  --with-csc-path         For Microsoft C/C++ .NET compiler users, please supply
-                          the path pointing to the csc.exe.
-
-                          Usage: --with-csc-path=<absolute path to csc.exe>
-
-  --with-nsis-path        For Windows users, please supply the path to the
-                          "Nullsoft Scriptable Install System" (NSIS). If NSIS
-                          is found in the path or this option is supplied a self
-                          contained executable installer for OpenOffice.org will
-                          be created.
-
-                          Usage: --with-nsis-path=<absolute path to nsis.exe>
-
-  --with-frame-home       For Microsoft C/C++ .NET compiler users, please supply
-                          the path pointing to lib/mscoree.lib, usually
-                          something like:
-                          "/cygdrive/c/Program Files/Microsoft Visual Studio .NET/FrameworkSDK"
-
-                          MS Visual Toolkit compiler users, please supply the
-                          path pointing to lib/msvcrt.lib, usually something
-                          like:
-                          "/cygdrive/c/Program Files/Microsoft Visual Studio .NET 2003/Vc7"
-
-                          Usage: --with-frame-home=<absolute path to Framework SDK [home]>
-
-  --with-psdk-home        For Windows users, please supply the path to the
-                          Microsoft Platform SDK.
-
-                          Usage: --with-psdk-home=<absolute path to Microsoft Platform SDK>
-
-  --with-directx-home     For Windows users, please supply the path to the
-                          Microsoft DirectX SDK.
-
-                          Usage: --with-directx-home=<absolute path to Microsoft DirectX SDK>
-
-  --with-mozilla-build    For Windows users, please supply the path to the
-                          mozilla build tools.
-
-                          Usage: --with-mozilla-build=<absolute path to mozilla build tools>
-
-						  At the moment of this writing, an installer for the mozilla build tools
-						  can be obtained from http://ftp.mozilla.org/pub/mozilla.org/mozilla/libraries/win32.
-
-  --with-local-solenv     If you have solenv in a location other than ./solenv,
-                          please supply the path here.
-
-                          Usage: --with-local-solenv=<absolute path to solenv>
-
-  --with-local-solver     if you have solver in a location other than ./solver,
-                          please supply the path here.
-
-                          Usage: --with-local-solver=<absolute path to solver>
-
-  --with-lang             Use this option to build OpenOffice.org with
-                          additional language support. English (US) is always
-                          included by default. Separate multiple languages with
-                          space. For all languages, use --with-lang=ALL.
-
-                          Usage: --with-lang="es sw tu cs sk"
-
-  --with-poor-help-localizations
-                           Use this option to specify which languages have
-                          unusable help localizations. Separate multiple
-                          languages with space.
-
-                          Usage: --with-poor-help-localizations="af ar be-BY ca"
-
-  --with-dict             Use this option to build OpenOffice.org with
-                          dictionary support. ALL dictionaries are always
-                          included by default unless overridden with
-                          this option. Separate multiple dictionaries with
-                          commas. For all dictionaries, use --with-dict=ALL.
-
-                          Usage: --with-dict=ENGB,ENUS,ITIT
-
-  --with-intro-bitmaps    Prefer the specified intro bitmaps over the
-                          the default one.  Can be more than one (separated by
-                          commas), the order means priority of fallback if the
-                          first does not exist (in the installed tree).
-
-                          Usage: --with-intro-bitmaps=/path/my_ooo_intro.bmp
-
-  --with-about-bitmaps    Similarly to --with-intro-bitmaps, this allows
-                          specification of bitmaps for the About box.
-
-                          Usage: --with-about-bitmaps=/path/my_ooo_about.bmp
-
-  --with-vendor           Set vendor of the build.
-
-                          Usage: --with-vendor="John the Builder"
-
-  --with-unix-wrapper    Redefines the name of the UNIX wrapper that will be used
-                          in the desktop files and in the desktop-integration RPMs.
-
-                          Usage: --with-unix-wrapper=ooffice
-
-  --with-asm-home         For Windows users, please supply the path for the
-                          ml.exe assembler.
-
-                          Usage: --with-asm-home=<path to ml.exe directory>
-
-  --with-os-version       For FreeBSD users, use this option option to override
-                          the detected OSVERSION.
-
-                          Usage: --with-os-version=<OSVERSION>
-
-  --with-unzip-home       Deprecated: use --with-zip-home instead
-  --with-zip-home         If you use a non standard zip, for example windows
-                          please supply the path for zip
-
-                          Usage: --with-zip-home=<path to zip executable>
-
-  --with-mingwin          For Windows users, use the mingwin32 compiler within
-                          cygwin environment
-
-                          Usage: --with-mingwin=yes
-
-                          For !Windows use, use the mingw32 C++ compiler to
-                          (re-) build unowinreg.dll. Specify the MinGW C++
-                          Compilers name.
-
-                          Usage: --with-mingwin=i586-mingw32msvc-g++
-
-  --with-build-version    Allows the builder to add a custom version tag
-                          that will appear in the Help/About box for QA
-                          purposes.
-
-                          Usage: --with-build-version="Built by Jim"
-
-  --with-alloc            Define which allocator to build with
-                          (choices are oo, system, tcmalloc, jemalloc)
-
-                          Note that on FreeBSD/NetBSD system==jemalloc
-
-  --with-x                use the X Window System
-
-Some influential environment variables:
-  CC          C compiler command
-  CFLAGS      C compiler flags
-  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-              nonstandard directory <lib dir>
-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
-              headers in a nonstandard directory <include dir>
-  CPP         C preprocessor
-  CXX         C++ compiler command
-  CXXFLAGS    C++ compiler flags
-  CXXCPP      C++ preprocessor
-
-Use these variables to override the choices made by `configure' or to help
-it to find libraries and programs with nonstandard names/locations.
-
-_ACEOF
-fi
-
-if test "$ac_init_help" = "recursive"; then
-  # If there are subdirs, report their specific --help.
-  ac_popdir=`pwd`
-  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
-    test -d $ac_dir || continue
-    ac_builddir=.
-
-if test "$ac_dir" != .; then
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
-  # A "../" for each directory in $ac_dir_suffix.
-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
-else
-  ac_dir_suffix= ac_top_builddir=
-fi
-
-case $srcdir in
-  .)  # No --srcdir option.  We are building in place.
-    ac_srcdir=.
-    if test -z "$ac_top_builddir"; then
-       ac_top_srcdir=.
-    else
-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
-    fi ;;
-  [\\/]* | ?:[\\/]* )  # Absolute path.
-    ac_srcdir=$srcdir$ac_dir_suffix;
-    ac_top_srcdir=$srcdir ;;
-  *) # Relative path.
-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
-esac
-
-# Do not use `cd foo && pwd` to compute absolute paths, because
-# the directories may not exist.
-case `pwd` in
-.) ac_abs_builddir="$ac_dir";;
-*)
-  case "$ac_dir" in
-  .) ac_abs_builddir=`pwd`;;
-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
-  esac;;
-esac
-case $ac_abs_builddir in
-.) ac_abs_top_builddir=${ac_top_builddir}.;;
-*)
-  case ${ac_top_builddir}. in
-  .) ac_abs_top_builddir=$ac_abs_builddir;;
-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
-  esac;;
-esac
-case $ac_abs_builddir in
-.) ac_abs_srcdir=$ac_srcdir;;
-*)
-  case $ac_srcdir in
-  .) ac_abs_srcdir=$ac_abs_builddir;;
-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
-  esac;;
-esac
-case $ac_abs_builddir in
-.) ac_abs_top_srcdir=$ac_top_srcdir;;
-*)
-  case $ac_top_srcdir in
-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
-  esac;;
-esac
-
-    cd $ac_dir
-    # Check for guested configure; otherwise get Cygnus style configure.
-    if test -f $ac_srcdir/configure.gnu; then
-      echo
-      $SHELL $ac_srcdir/configure.gnu  --help=recursive
-    elif test -f $ac_srcdir/configure; then
-      echo
-      $SHELL $ac_srcdir/configure  --help=recursive
-    elif test -f $ac_srcdir/configure.ac ||
-	   test -f $ac_srcdir/configure.in; then
-      echo
-      $ac_configure --help
-    else
-      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-    fi
-    cd $ac_popdir
-  done
-fi
-
-test -n "$ac_init_help" && exit 0
-if $ac_init_version; then
-  cat <<\_ACEOF
-
-Copyright (C) 2003 Free Software Foundation, Inc.
-This configure script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it.
-_ACEOF
-  exit 0
-fi
-exec 5>config.log
-cat >&5 <<_ACEOF
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by $as_me, which was
-generated by GNU Autoconf 2.59.  Invocation command line was
-
-  $ $0 $@
-
-_ACEOF
-{
-cat <<_ASUNAME
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
-uname -m = `(uname -m) 2>/dev/null || echo unknown`
-uname -r = `(uname -r) 2>/dev/null || echo unknown`
-uname -s = `(uname -s) 2>/dev/null || echo unknown`
-uname -v = `(uname -v) 2>/dev/null || echo unknown`
-
-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
-/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
-
-/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
-/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
-hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
-/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
-/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
-/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-
-_ASUNAME
-
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
-  IFS=$as_save_IFS
-  test -z "$as_dir" && as_dir=.
-  echo "PATH: $as_dir"
-done
-
-} >&5
-
-cat >&5 <<_ACEOF
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-_ACEOF
-
-
-# Keep a trace of the command line.
-# Strip out --no-create and --no-recursion so they do not pile up.
-# Strip out --silent because we don't want to record it for future runs.
-# Also quote any args containing shell meta-characters.
-# Make two passes to allow for proper duplicate-argument suppression.
-ac_configure_args=
-ac_configure_args0=
-ac_configure_args1=
-ac_sep=
-ac_must_keep_next=false
-for ac_pass in 1 2
-do
-  for ac_arg
-  do
-    case $ac_arg in
-    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
-    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-    | -silent | --silent | --silen | --sile | --sil)
-      continue ;;
-    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
-      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-    esac
-    case $ac_pass in
-    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
-    2)
-      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
-      if test $ac_must_keep_next = true; then
-	ac_must_keep_next=false # Got value, back to normal.
-      else
-	case $ac_arg in
-	  *=* | --config-cache | -C | -disable-* | --disable-* \
-	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
-	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
-	  | -with-* | --with-* | -without-* | --without-* | --x)
-	    case "$ac_configure_args0 " in
-	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
-	    esac
-	    ;;
-	  -* ) ac_must_keep_next=true ;;
-	esac
-      fi
-      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
-      # Get rid of the leading space.
-      ac_sep=" "
-      ;;
-    esac
-  done
-done
-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
-
-# When interrupted or exit'd, cleanup temporary files, and complete
-# config.log.  We remove comments because anyway the quotes in there
-# would cause problems or look ugly.
-# WARNING: Be sure not to use single quotes in there, as some shells,
-# such as our DU 5.0 friend, will then `close' the trap.
-trap 'exit_status=$?
-  # Save into config.log some information that might help in debugging.
-  {
-    echo
-
-    cat <<\_ASBOX
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-_ASBOX
-    echo
-    # The following way of writing the cache mishandles newlines in values,
-{
-  (set) 2>&1 |
-    case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
-    *ac_space=\ *)
-      sed -n \
-	"s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
-	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
-      ;;
-    *)
-      sed -n \
-	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
-      ;;
-    esac;
-}
-    echo
-
-    cat <<\_ASBOX
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-_ASBOX
-    echo
-    for ac_var in $ac_subst_vars
-    do
-      eval ac_val=$`echo $ac_var`
-      echo "$ac_var='"'"'$ac_val'"'"'"
-    done | sort
-    echo
-
-    if test -n "$ac_subst_files"; then
-      cat <<\_ASBOX
-## ------------- ##
-## Output files. ##
-## ------------- ##
-_ASBOX
-      echo
-      for ac_var in $ac_subst_files
-      do
-	eval ac_val=$`echo $ac_var`
-	echo "$ac_var='"'"'$ac_val'"'"'"
-      done | sort
-      echo
-    fi
-
-    if test -s confdefs.h; then
-      cat <<\_ASBOX
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-_ASBOX
-      echo
-      sed "/^$/d" confdefs.h | sort
-      echo
-    fi
-    test "$ac_signal" != 0 &&
-      echo "$as_me: caught signal $ac_signal"
-    echo "$as_me: exit $exit_status"
-  } >&5
-  rm -f core *.core &&
-  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
-    exit $exit_status
-     ' 0
-for ac_signal in 1 2 13 15; do
-  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
-done
-ac_signal=0
-
-# confdefs.h avoids OS command line length limits that DEFS can exceed.
-rm -rf conftest* confdefs.h
-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
-echo >confdefs.h
-
-# Predefined preprocessor variables.
-
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE_NAME "$PACKAGE_NAME"
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE_VERSION "$PACKAGE_VERSION"
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE_STRING "$PACKAGE_STRING"
-_ACEOF
-
-
-cat >>confdefs.h <<_ACEOF
-#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
-_ACEOF
-
-
-# Let the site file select an alternate cache file if it wants to.
-# Prefer explicitly selected file to automatically selected ones.
-if test -z "$CONFIG_SITE"; then
-  if test "x$prefix" != xNONE; then
-    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
-  else
-    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
-  fi
-fi
-for ac_site_file in $CONFIG_SITE; do
-  if test -r "$ac_site_file"; then
-    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
-echo "$as_me: loading site script $ac_site_file" >&6;}
-    sed 's/^/| /' "$ac_site_file" >&5
-    . "$ac_site_file"
-  fi
-done
-
-if test -r "$cache_file"; then
-  # Some versions of bash will fail to source /dev/null (special
-  # files actually), so we avoid doing that.
-  if test -f "$cache_file"; then
-    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
-echo "$as_me: loading cache $cache_file" >&6;}
-    case $cache_file in
-      [\\/]* | ?:[\\/]* ) . $cache_file;;
-      *)                      . ./$cache_file;;
-    esac
-  fi
-else
-  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
-echo "$as_me: creating cache $cache_file" >&6;}
-  >$cache_file
-fi
-
-# Check that the precious variables saved in the cache have kept the same
-# value.
-ac_cache_corrupted=false
-for ac_var in `(set) 2>&1 |
-	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
-  eval ac_old_set=\$ac_cv_env_${ac_var}_set
-  eval ac_new_set=\$ac_env_${ac_var}_set
-  eval ac_old_val="\$ac_cv_env_${ac_var}_value"
-  eval ac_new_val="\$ac_env_${ac_var}_value"
-  case $ac_old_set,$ac_new_set in
-    set,)
-      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-      ac_cache_corrupted=: ;;
-    ,set)
-      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-      ac_cache_corrupted=: ;;
-    ,);;
-    *)
-      if test "x$ac_old_val" != "x$ac_new_val"; then
-	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
-echo "$as_me:   former value:  $ac_old_val" >&2;}
-	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
-echo "$as_me:   current value: $ac_new_val" >&2;}
-	ac_cache_corrupted=:
-      fi;;
-  esac
-  # Pass precious variables to config.status.
-  if test "$ac_new_set" = set; then
-    case $ac_new_val in
-    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
-      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-    *) ac_arg=$ac_var=$ac_new_val ;;
-    esac
-    case " $ac_configure_args " in
-      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
-      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
-    esac
-  fi
-done
-if $ac_cache_corrupted; then
-  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
-echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
-   { (exit 1); exit 1; }; }
-fi
-
-ac_ext=c
-ac_cpp='$CPP $CPPFLAGS'
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-echo "$@" >config.parms
-
-# Check whether --with-gnu-patch or --without-gnu-patch was given.
-if test "${with_gnu_patch+set}" = set; then
-  withval="$with_gnu_patch"
-
-fi;
-
-# Check whether --with-agg or --without-agg was given.
-if test "${with_agg+set}" = set; then
-  withval="$with_agg"
-
-else
-  with_agg=yes
-fi;
-
-# Check whether --with-gnu-cp or --without-gnu-cp was given.
-if test "${with_gnu_cp+set}" = set; then
-  withval="$with_gnu_cp"
-
-fi;
-# Check whether --enable-graphite or --disable-graphite was given.
-if test "${enable_graphite+set}" = set; then
-  enableval="$enable_graphite"
-
-fi;
-
-# Check whether --with-system-graphite or --without-system-graphite was given.
-if test "${with_system_graphite+set}" = set; then
-  withval="$with_system_graphite"
-
-fi;
-# Check whether --enable-ldap or --disable-ldap was given.
-if test "${enable_ldap+set}" = set; then
-  enableval="$enable_ldap"
-
-fi;
-# Check whether --enable-fetch-external or --disable-fetch-external was given.
-if test "${enable_fetch_external+set}" = set; then
-  enableval="$enable_fetch_external"
-
-fi;
-
-# Check whether --with-external-tar or --without-external-tar was given.
-if test "${with_external_tar+set}" = set; then
-  withval="$with_external_tar"
-   TARFILE_LOCATION="$withval"
-
-fi;
-
-# Check whether --with-openldap or --without-openldap was given.
-if test "${with_openldap+set}" = set; then
-  withval="$with_openldap"
-
-fi;
-# Check whether --enable-lockdown or --disable-lockdown was given.
-if test "${enable_lockdown+set}" = set; then
-  enableval="$enable_lockdown"
-
-fi;
-# Check whether --enable-vba or --disable-vba was given.
-if test "${enable_vba+set}" = set; then
-  enableval="$enable_vba"
-
-fi;
-
-# Check whether --with-vba-package-format or --without-vba-package-format was given.
-if test "${with_vba_package_format+set}" = set; then
-  withval="$with_vba_package_format"
-
-fi;
-# Check whether --enable-pch or --disable-pch was given.
-if test "${enable_pch+set}" = set; then
-  enableval="$enable_pch"
-
-fi;
-# Check whether --enable-hids or --disable-hids was given.
-if test "${enable_hids+set}" = set; then
-  enableval="$enable_hids"
-
-fi;
-# Check whether --enable-mozilla or --disable-mozilla was given.
-if test "${enable_mozilla+set}" = set; then
-  enableval="$enable_mozilla"
-
-else
-  enable_mozilla="yes"
-fi;
-
-# Check whether --with-fonts or --without-fonts was given.
-if test "${with_fonts+set}" = set; then
-  withval="$with_fonts"
-
-fi;
-
-# Check whether --with-ppds or --without-ppds was given.
-if test "${with_ppds+set}" = set; then
-  withval="$with_ppds"
-
-fi;
-
-# Check whether --with-afms or --without-afms was given.
-if test "${with_afms+set}" = set; then
-  withval="$with_afms"
-
-fi;
-# Check whether --enable-epm or --disable-epm was given.
-if test "${enable_epm+set}" = set; then
-  enableval="$enable_epm"
-
-else
-  enable_epm="yes"
-fi;
-
-# Check whether --with-epm or --without-epm was given.
-if test "${with_epm+set}" = set; then
-  withval="$with_epm"
-
-fi;
-
-# Check whether --with-package-format or --without-package-format was given.
-if test "${with_package_format+set}" = set; then
-  withval="$with_package_format"
-
-fi;
-# Check whether --enable-odk or --disable-odk was given.
-if test "${enable_odk+set}" = set; then
-  enableval="$enable_odk"
-
-else
-  enable_odk="yes"
-fi;
-# Check whether --enable-mathmldtd or --disable-mathmldtd was given.
-if test "${enable_mathmldtd+set}" = set; then
-  enableval="$enable_mathmldtd"
-
-else
-  enable_mathmldtd="yes"
-fi;
-# Check whether --enable-evolution2 or --disable-evolution2 was given.
-if test "${enable_evolution2+set}" = set; then
-  enableval="$enable_evolution2"
-
-fi;
-
-# Check whether --with-system-stdlibs or --without-system-stdlibs was given.
-if test "${with_system_stdlibs+set}" = set; then
-  withval="$with_system_stdlibs"
-
-fi;
-# Check whether --enable-cups or --disable-cups was given.
-if test "${enable_cups+set}" = set; then
-  enableval="$enable_cups"
-
-else
-  enable_cups=yes
-fi;
-# Check whether --enable-fontconfig or --disable-fontconfig was given.
-if test "${enable_fontconfig+set}" = set; then
-  enableval="$enable_fontconfig"
-
-else
-  enable_fontconfig=yes
-fi;
-# Check whether --enable-directx or --disable-directx was given.
-if test "${enable_directx+set}" = set; then
-  enableval="$enable_directx"
-
-else
-  enable_directx=yes
-fi;
-# Check whether --enable-activex or --disable-activex was given.
-if test "${enable_activex+set}" = set; then
-  enableval="$enable_activex"
-
-fi;
-
-# Check whether --enable-atl or --disable-atl was given.
-if test "${enable_atl+set}" = set; then
-  enableval="$enable_atl"
-
-fi;
-
-# Check whether --enable-symbols or --disable-symbols was given.
-if test "${enable_symbols+set}" = set; then
-  enableval="$enable_symbols"
-
-fi;
-# Check whether --enable-strip-solver or --disable-strip-solver was given.
-if test "${enable_strip_solver+set}" = set; then
-  enableval="$enable_strip_solver"
-
-fi;
-# Check whether --enable-werror or --disable-werror was given.
-if test "${enable_werror+set}" = set; then
-  enableval="$enable_werror"
-
-fi;
-# Check whether --enable-debug or --disable-debug was given.
-if test "${enable_debug+set}" = set; then
-  enableval="$enable_debug"
-
-fi;
-# Check whether --enable-dbgutil or --disable-dbgutil was given.
-if test "${enable_dbgutil+set}" = set; then
-  enableval="$enable_dbgutil"
-
-fi;
-# Check whether --enable-crashdump or --disable-crashdump was given.
-if test "${enable_crashdump+set}" = set; then
-  enableval="$enable_crashdump"
-
-fi;
-# Check whether --enable-cl-standard or --disable-cl-standard was given.
-if test "${enable_cl_standard+set}" = set; then
-  enableval="$enable_cl_standard"
-
-fi;
-# Check whether --enable-gtk or --disable-gtk was given.
-if test "${enable_gtk+set}" = set; then
-  enableval="$enable_gtk"
-
-else
-  enable_gtk=yes
-fi;
-# Check whether --enable-systray or --disable-systray was given.
-if test "${enable_systray+set}" = set; then
-  enableval="$enable_systray"
-
-else
-  enable_systray=yes
-fi;
-# Check whether --enable-cairo or --disable-cairo was given.
-if test "${enable_cairo+set}" = set; then
-  enableval="$enable_cairo"
-
-else
-  enable_cairo=no
-fi;
-
-# Check whether --with-system-cairo or --without-system-cairo was given.
-if test "${with_system_cairo+set}" = set; then
-  withval="$with_system_cairo"
-
-fi;
-# Check whether --enable-opengl or --disable-opengl was given.
-if test "${enable_opengl+set}" = set; then
-  enableval="$enable_opengl"
-
-else
-  enable_opengl=no
-fi;
-# Check whether --enable-dbus or --disable-dbus was given.
-if test "${enable_dbus+set}" = set; then
-  enableval="$enable_dbus"
-
-else
-  enable_dbus=no
-fi;
-# Check whether --enable-gconf or --disable-gconf was given.
-if test "${enable_gconf+set}" = set; then
-  enableval="$enable_gconf"
-
-else
-  enable_gconf=yes
-fi;
-# Check whether --enable-gnome-vfs or --disable-gnome-vfs was given.
-if test "${enable_gnome_vfs+set}" = set; then
-  enableval="$enable_gnome_vfs"
-
-else
-  enable_gnome_vfs=yes
-fi;
-# Check whether --enable-gio or --disable-gio was given.
-if test "${enable_gio+set}" = set; then
-  enableval="$enable_gio"
-
-else
-  enable_gio=no
-fi;
-# Check whether --enable-static-gtk or --disable-static-gtk was given.
-if test "${enable_static_gtk+set}" = set; then
-  enableval="$enable_static_gtk"
-
-fi;
-# Check whether --enable-layout or --disable-layout was given.
-if test "${enable_layout+set}" = set; then
-  enableval="$enable_layout"
-
-fi;
-# Check whether --enable-build-mozilla or --disable-build-mozilla was given.
-if test "${enable_build_mozilla+set}" = set; then
-  enableval="$enable_build_mozilla"
-
-fi;
-
-# Check whether --with-mozilla-version or --without-mozilla-version was given.
-if test "${with_mozilla_version+set}" = set; then
-  withval="$with_mozilla_version"
-
-fi;
-
-# Check whether --with-mozilla-toolkit or --without-mozilla-toolkit was given.
-if test "${with_mozilla_toolkit+set}" = set; then
-  withval="$with_mozilla_toolkit"
-
-fi;
-# Check whether --enable-nss_module or --disable-nss_module was given.
-if test "${enable_nss_module+set}" = set; then
-  enableval="$enable_nss_module"
-
-else
-  enable_nss_module=yes
-fi;
-# Check whether --enable-kde or --disable-kde was given.
-if test "${enable_kde+set}" = set; then
-  enableval="$enable_kde"
-
-fi;
-# Check whether --enable-kdeab or --disable-kdeab was given.
-if test "${enable_kdeab+set}" = set; then
-  enableval="$enable_kdeab"
-
-else
-  if test "$enable_kde" = "yes"; then enable_kdeab=yes; fi
-fi;
-# Check whether --enable-kde4 or --disable-kde4 was given.
-if test "${enable_kde4+set}" = set; then
-  enableval="$enable_kde4"
-
-fi;
-# Check whether --enable-binfilter or --disable-binfilter was given.
-if test "${enable_binfilter+set}" = set; then
-  enableval="$enable_binfilter"
-
-else
-  if ! test -d ./binfilter; then enable_binfilter=no; fi
-fi;
-# Check whether --enable-rpath or --disable-rpath was given.
-if test "${enable_rpath+set}" = set; then
-  enableval="$enable_rpath"
-
-fi;
-# Check whether --enable-pam or --disable-pam was given.
-if test "${enable_pam+set}" = set; then
-  enableval="$enable_pam"
-
-fi;
-# Check whether --enable-pam-link or --disable-pam-link was given.
-if test "${enable_pam_link+set}" = set; then
-  enableval="$enable_pam_link"
-
-fi;
-# Check whether --enable-crypt-link or --disable-crypt-link was given.
-if test "${enable_crypt_link+set}" = set; then
-  enableval="$enable_crypt_link"
-
-else
-  enable_crypt_link=yes
-fi;
-# Check whether --enable-xrender-link or --disable-xrender-link was given.
-if test "${enable_xrender_link+set}" = set; then
-  enableval="$enable_xrender_link"
-
-fi;
-# Check whether --enable-randr or --disable-randr was given.
-if test "${enable_randr+set}" = set; then
-  enableval="$enable_randr"
-
-else
-  enable_randr=yes
-fi;
-# Check whether --enable-randr-link or --disable-randr-link was given.
-if test "${enable_randr_link+set}" = set; then
-  enableval="$enable_randr_link"
-
-else
-  enable_randr_link=yes
-fi;
-
-# Check whether --with-myspell-dicts or --without-myspell-dicts was given.
-if test "${with_myspell_dicts+set}" = set; then
-  withval="$with_myspell_dicts"
-
-fi;
-
-# Check whether --with-system-dicts or --without-system-dicts was given.
-if test "${with_system_dicts+set}" = set; then
-  withval="$with_system_dicts"
-
-fi;
-
-# Check whether --with-external-dict-dir or --without-external-dict-dir was given.
-if test "${with_external_dict_dir+set}" = set; then
-  withval="$with_external_dict_dir"
-
-fi;
-
-# Check whether --with-external-hyph-dir or --without-external-hyph-dir was given.
-if test "${with_external_hyph_dir+set}" = set; then
-  withval="$with_external_hyph_dir"
-
-fi;
-
-# Check whether --with-external-thes-dir or --without-external-thes-dir was given.
-if test "${with_external_thes_dir+set}" = set; then
-  withval="$with_external_thes_dir"
-
-fi;
-
-# Check whether --with-system-libs or --without-system-libs was given.
-if test "${with_system_libs+set}" = set; then
-  withval="$with_system_libs"
-
-fi;
-
-# Check whether --with-system-headers or --without-system-headers was given.
-if test "${with_system_headers+set}" = set; then
-  withval="$with_system_headers"
-
-fi;
-
-# Check whether --with-system-jars or --without-system-jars was given.
-if test "${with_system_jars+set}" = set; then
-  withval="$with_system_jars"
-
-fi;
-
-# Check whether --with-system-zlib or --without-system-zlib was given.
-if test "${with_system_zlib+set}" = set; then
-  withval="$with_system_zlib"
-
-fi;
-
-# Check whether --with-system-openssl or --without-system-openssl was given.
-if test "${with_system_openssl+set}" = set; then
-  withval="$with_system_openssl"
-
-fi;
-
-# Check whether --with-system-jpeg or --without-system-jpeg was given.
-if test "${with_system_jpeg+set}" = set; then
-  withval="$with_system_jpeg"
-
-fi;
-
-# Check whether --with-system-expat or --without-system-expat was given.
-if test "${with_system_expat+set}" = set; then
-  withval="$with_system_expat"
-
-fi;
-
-# Check whether --with-system-libwpd or --without-system-libwpd was given.
-if test "${with_system_libwpd+set}" = set; then
-  withval="$with_system_libwpd"
-
-fi;
-
-# Check whether --with-system-libxml or --without-system-libxml was given.
-if test "${with_system_libxml+set}" = set; then
-  withval="$with_system_libxml"
-
-fi;
-
-# Check whether --with-system-python or --without-system-python was given.
-if test "${with_system_python+set}" = set; then
-  withval="$with_system_python"
-
-fi;
-
-# Check whether --with-system-icu or --without-system-icu was given.
-if test "${with_system_icu+set}" = set; then
-  withval="$with_system_icu"
-
-fi;
-
-# Check whether --with-system-poppler or --without-system-poppler was given.
-if test "${with_system_poppler+set}" = set; then
-  withval="$with_system_poppler"
-
-fi;
-
-# Check whether --with-system-db or --without-system-db was given.
-if test "${with_system_db+set}" = set; then
-  withval="$with_system_db"
-
-fi;
-
-# Check whether --with-system-lucene or --without-system-lucene was given.
-if test "${with_system_lucene+set}" = set; then
-  withval="$with_system_lucene"
-
-fi;
-
-# Check whether --with-lucene-core-jar or --without-lucene-core-jar was given.
-if test "${with_lucene_core_jar+set}" = set; then
-  withval="$with_lucene_core_jar"
-   LUCENE_CORE_JAR="$withval"
-
-fi;
-
-# Check whether --with-lucene-analyzers-jar or --without-lucene-analyzers-jar was given.
-if test "${with_lucene_analyzers_jar+set}" = set; then
-  withval="$with_lucene_analyzers_jar"
-   LUCENE_ANALYZERS_JAR="$withval"
-
-fi;
-# Check whether --enable-mysql-connector or --disable-mysql-connector was given.
-if test "${enable_mysql_connector+set}" = set; then
-  enableval="$enable_mysql_connector"
-
-fi;
-
-# Check whether --with-system-mysql or --without-system-mysql was given.
-if test "${with_system_mysql+set}" = set; then
-  withval="$with_system_mysql"
-
-fi;
-
-# Check whether --with-libmysql-path or --without-libmysql-path was given.
-if test "${with_libmysql_path+set}" = set; then
-  withval="$with_libmysql_path"
-
-fi;
-
-# Check whether --with-system-mysql-cppconn or --without-system-mysql-cppconn was given.
-if test "${with_system_mysql_cppconn+set}" = set; then
-  withval="$with_system_mysql_cppconn"
-
-fi;
-
-# Check whether --with-system-hsqldb or --without-system-hsqldb was given.
-if test "${with_system_hsqldb+set}" = set; then
-  withval="$with_system_hsqldb"
-
-fi;
-
-# Check whether --with-hsqldb-jar or --without-hsqldb-jar was given.
-if test "${with_hsqldb_jar+set}" = set; then
-  withval="$with_hsqldb_jar"
-   HSQLDB_JAR="$withval"
-
-fi;
-
-# Check whether --with-system-beanshell or --without-system-beanshell was given.
-if test "${with_system_beanshell+set}" = set; then
-  withval="$with_system_beanshell"
-
-fi;
-
-# Check whether --with-beanshell-jar or --without-beanshell-jar was given.
-if test "${with_beanshell_jar+set}" = set; then
-  withval="$with_beanshell_jar"
-   BSH_JAR="$withval"
-
-fi;
-# Check whether --enable-presenter-extra-ui or --disable-presenter-extra-ui was given.
-if test "${enable_presenter_extra_ui+set}" = set; then
-  enableval="$enable_presenter_extra_ui"
-
-else
-  enable_presenter_extra_ui=no
-fi;
-# Check whether --enable-minimizer or --disable-minimizer was given.
-if test "${enable_minimizer+set}" = set; then
-  enableval="$enable_minimizer"
-
-fi;
-# Check whether --enable-presenter-console or --disable-presenter-console was given.
-if test "${enable_presenter_console+set}" = set; then
-  enableval="$enable_presenter_console"
-
-fi;
-# Check whether --enable-pdfimport or --disable-pdfimport was given.
-if test "${enable_pdfimport+set}" = set; then
-  enableval="$enable_pdfimport"
-
-fi;
-# Check whether --enable-wiki-publisher or --disable-wiki-publisher was given.
-if test "${enable_wiki_publisher+set}" = set; then
-  enableval="$enable_wiki_publisher"
-
-fi;
-
-# Check whether --with-commons-codec-jar or --without-commons-codec-jar was given.
-if test "${with_commons_codec_jar+set}" = set; then
-  withval="$with_commons_codec_jar"
-   COMMONS_CODEC_JAR="$withval"
-
-fi;
-
-# Check whether --with-commons-lang-jar or --without-commons-lang-jar was given.
-if test "${with_commons_lang_jar+set}" = set; then
-  withval="$with_commons_lang_jar"
-   COMMONS_LANG_JAR="$withval"
-
-fi;
-
-# Check whether --with-commons-httpclient-jar or --without-commons-httpclient-jar was given.
-if test "${with_commons_httpclient_jar+set}" = set; then
-  withval="$with_commons_httpclient_jar"
-   COMMONS_HTTPCLIENT_JAR="$withval"
-
-fi;
-
-# Check whether --with-commons-logging-jar or --without-commons-logging-jar was given.
-if test "${with_commons_logging_jar+set}" = set; then
-  withval="$with_commons_logging_jar"
-   COMMONS_LOGGING_JAR="$withval"
-
-fi;
-
-# Check whether --with-servlet-api-jar or --without-servlet-api-jar was given.
-if test "${with_servlet_api_jar+set}" = set; then
-  withval="$with_servlet_api_jar"
-   SERVLETAPI_JAR="$withval"
-
-fi;
-# Check whether --enable-report-builder or --disable-report-builder was given.
-if test "${enable_report_builder+set}" = set; then
-  enableval="$enable_report_builder"
-
-fi;
-
-# Check whether --with-system-jfreereport or --without-system-jfreereport was given.
-if test "${with_system_jfreereport+set}" = set; then
-  withval="$with_system_jfreereport"
-
-fi;
-
-# Check whether --with-sac-jar or --without-sac-jar was given.
-if test "${with_sac_jar+set}" = set; then
-  withval="$with_sac_jar"
-   SAC_JAR="$withval"
-
-fi;
-
-# Check whether --with-libxml-jar or --without-libxml-jar was given.
-if test "${with_libxml_jar+set}" = set; then
-  withval="$with_libxml_jar"
-   LIBXML_JAR="$withval"
-
-fi;
-
-# Check whether --with-flute-jar or --without-flute-jar was given.
-if test "${with_flute_jar+set}" = set; then
-  withval="$with_flute_jar"
-   FLUTE_JAR="$withval"
-
-fi;
-
-# Check whether --with-jfreereport-jar or --without-jfreereport-jar was given.
-if test "${with_jfreereport_jar+set}" = set; then
-  withval="$with_jfreereport_jar"
-   JFREEREPORT_JAR="$withval"
-
-fi;
-
-# Check whether --with-liblayout-jar or --without-liblayout-jar was given.
-if test "${with_liblayout_jar+set}" = set; then
-  withval="$with_liblayout_jar"
-   LIBLAYOUT_JAR="$withval"
-
-fi;
-
-# Check whether --with-libloader-jar or --without-libloader-jar was given.
-if test "${with_libloader_jar+set}" = set; then
-  withval="$with_libloader_jar"
-   LIBLOADER_JAR="$withval"
-
-fi;
-
-# Check whether --with-libloader-jar or --without-libloader-jar was given.

... etc. - the rest is truncated


More information about the ooo-build-commit mailing list