diff options
author | Pedro Giffuni <pfg@apache.org> | 2012-02-13 00:49:48 +0000 |
---|---|---|
committer | Pedro Giffuni <pfg@apache.org> | 2012-02-13 00:49:48 +0000 |
commit | c82a38fefc4c9607f0d44187c8e8ae7292976dfc (patch) | |
tree | f500a80bfd5b59a046bc3cba149b929300628481 | |
parent | 6cc383a8a6ea9fbe941c7fd83092f6128d54c7da (diff) |
Detect prebuilt StAX API 1.2.0.
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 869554b28340..a9539ea58628 100644 --- a/configure.in +++ b/configure.in @@ -3608,9 +3608,9 @@ dnl =================================================================== dnl Check for building stax dnl =================================================================== AC_MSG_CHECKING([whether to build the stax]) -if test -f "./stax/download/jsr173_1.0_api.jar"; then +if test -f "./stax/download/stax-1.2.0.jar"; then BUILD_STAX=NO - AC_MSG_RESULT([no, will use the prebuilt stax/download/jsr173_1.0_api.jar]) + AC_MSG_RESULT([no, will use the prebuilt stax/download/stax-1.2.0.jar]) else BUILD_STAX=YES AC_MSG_RESULT([yes]) |