[svn-r29502] The thread-safety and enable Java options have been marked as

"unsupported" in the autotools.

Tested on: 64-bit Ubuntu 15.10 w/ gcc 5.2.1
           autotools serial w/ Java
This commit is contained in:
Dana Robinson 2016-03-22 02:59:28 -05:00
parent 9c3568819f
commit 7255d1a1b8

View File

@ -1575,7 +1575,7 @@ AC_ARG_ENABLE([threadsafe],
[default=no]])],
[THREADSAFE=$enableval])
## The high-level, C++, and Fortran interfaces are not compatible
## The high-level, C++, Fortran and Java interfaces are not compatible
## with the thread-safety option because the lock is not hoisted
## into the higher-level API calls.
@ -1607,6 +1607,14 @@ if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
fi
fi
## --enable-threadsafe is also incompatible with --enable-java unless
## --enable-unsupported has been specified on the configure line.
if test "X${ALLOW_UNSUPPORTED}" != "Xyes"; then
if test "X${HDF_JAVA}" = "Xyes" -a "X${enable_threadsafe}" = "Xyes"; then
AC_MSG_ERROR([--enable-java and --enable-threadsafe flags are incompatible. Use --enable-unsupported to override this error.])
fi
fi
case "X-$THREADSAFE" in
X-|X-no)