diff options
author | Rene Engelhard <rene@openoffice.org> | 2010-06-22 18:29:17 +0200 |
---|---|---|
committer | Rene Engelhard <rene@openoffice.org> | 2010-06-22 18:29:17 +0200 |
commit | 6f8ac234543939d07f4256455ef30b6c48d72fe0 (patch) | |
tree | e727c4e25cb91c7cbc0a600095ab3c73063c8556 /configure.in | |
parent | 826a90d68a4dc458585c6d2e647bec17971e9193 (diff) |
configure25: #i93116# Allow to use the prebuilt stax
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 089742eca99e..7c3b3a58292c 100644 --- a/configure.in +++ b/configure.in @@ -3422,6 +3422,19 @@ else fi dnl =================================================================== +dnl Check for building stax +dnl =================================================================== +AC_MSG_CHECKING([whether to build the stax]) +if test -f "../external/StAX/jsr173_1.0_api.jar"; then + BUILD_STAX=NO + AC_MSG_RESULT([no, will use the prebuilt external/StAX/jsr173_1.0_api.jar]) +else + BUILD_STAX=YES + AC_MSG_RESULT([yes]) +fi +AC_SUBST(BUILD_STAX) + +dnl =================================================================== dnl Check for building ODK dnl =================================================================== AC_MSG_CHECKING([whether to build the ODK]) |