INTEGRATION: CWS cmcfixes28 (1.177.8); FILE MERGED
2006/10/02 09:54:05 cmc 1.177.8.2: RESYNC: (1.177-1.179); FILE MERGED 2006/09/27 11:18:49 cmc 1.177.8.1: #i69026# add some optional support for an additional serializer.jar location
This commit is contained in:
parent
9bc03b24b0
commit
b1398db00e
1 changed files with 11 additions and 2 deletions
|
@ -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: 2006-10-06 10:35:45 $
|
||||
dnl * Date: $Date: 2006-10-11 09:26:04 $
|
||||
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.181 $ )
|
||||
AC_REVISION( $Revision: 1.182 $ )
|
||||
AC_PREREQ(2.50)
|
||||
AC_INIT()
|
||||
echo "$@" >config.parms
|
||||
|
@ -310,6 +310,10 @@ AC_ARG_WITH(xalan-jar,
|
|||
[ --with-xalan-jar=JARFILE Specify path to jarfile manually ],
|
||||
[ XALAN_JAR="$withval"
|
||||
])
|
||||
AC_ARG_WITH(serializer-jar,
|
||||
[ --with-serializer-jar=JARFILE Specify path to jarfile manually ],
|
||||
[ SERIALIZER_JAR="$withval"
|
||||
])
|
||||
AC_ARG_WITH(system-sablot,
|
||||
[ --with-system-sablot Use sablot already on system
|
||||
],,)
|
||||
|
@ -3076,6 +3080,11 @@ if test -n "$with_system_xalan" -o -n "$with_system_libs" && \
|
|||
AC_CHECK_FILE($XALAN_JAR, [],
|
||||
[AC_MSG_ERROR(xalan.jar replacement not found.)], [])
|
||||
fi
|
||||
if test -n "$SERIALIZER_JAR"; then
|
||||
AC_CHECK_FILE($SERIALIZER_JAR, [],
|
||||
[AC_MSG_ERROR(serializer.jar not found.)], [])
|
||||
AC_SUBST(SERIALIZER_JAR)
|
||||
fi
|
||||
else
|
||||
AC_MSG_RESULT([internal])
|
||||
SYSTEM_XALAN=NO
|
||||
|
|
Loading…
Reference in a new issue