Kaydet (Commit) a7d9352b authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS cmcfixes37 (1.213.8); FILE MERGED

2007/08/02 08:29:49 cmc 1.213.8.4: #i78807# too much pain in attempting to pick working default for alternatives based javac's, forget about it
2007/08/01 16:35:07 cmc 1.213.8.3: #i78807# support for javac on Darwin
2007/08/01 15:30:37 cmc 1.213.8.2: #i78807# support for javac being gij
2007/07/27 10:22:57 cmc 1.213.8.1: #i80057# #i78807# configure tweaks
üst 1c10acd1
......@@ -3,7 +3,7 @@ dnl * vi:set sw=3 ts=3 et:
dnl *
dnl * Name: configure.in
dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
dnl * Date: $Date: 2007-08-02 14:58:57 $
dnl * Date: $Date: 2007-08-02 15:55:25 $
dnl *
dnl * Desc: This file serves as input for the GNU autoconf package
dnl * in order to create a configure script.
......@@ -12,7 +12,7 @@ dnl * necessary to build OpenOffice.org
dnl *
dnl *
dnl ******************************************************************/
AC_REVISION( $Revision: 1.215 $ )
AC_REVISION( $Revision: 1.216 $ )
AC_PREREQ(2.50)
AC_INIT()
echo "$@" >config.parms
......@@ -358,6 +358,9 @@ AC_ARG_WITH(system-curl,
AC_ARG_WITH(system-boost,
[ --with-system-boost Use boost already on system
],,)
AC_ARG_WITH(system-vigra,
[ --with-system-vigra Use vigra already on system
],,)
AC_ARG_WITH(system-nas,
[ --with-system-nas Use nas already on system
],,)
......@@ -3393,6 +3396,25 @@ else
fi
AC_SUBST(SYSTEM_BOOST)
dnl ===================================================================
dnl Check for system vigra
dnl ===================================================================
AC_MSG_CHECKING([which vigra to use])
if test -n "$with_system_vigra" && test "$with_system_vigra" != "no"; then
AC_MSG_RESULT([external])
SYSTEM_VIGRA=YES
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_CHECK_HEADER(vigra/copyimage.hxx, [],
[AC_MSG_ERROR(vigra/copyimage.hxx not found. install vigra)], [])
AC_LANG_RESTORE
else
AC_MSG_RESULT([internal])
BUILD_TYPE="$BUILD_TYPE VIGRA"
SYSTEM_VIGRA=NO
fi
AC_SUBST(SYSTEM_VIGRA)
dnl ===================================================================
dnl Check for system odbc
dnl ===================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment