added --enable-full-liw to configure.ac

This commit is contained in:
2019-04-17 05:51:36 +00:00
parent 0cbf9e4edf
commit 2255d894b0
6 changed files with 45 additions and 19 deletions

View File

@ -599,6 +599,17 @@ else
AC_DEFINE([HCL_UNICODE_SIZE],[1],[Unicode character type size])
fi
AC_ARG_ENABLE([full-liw],
[AS_HELP_STRING([--enable-full-liw],[Use a full word as a large integer word (default. no)])],
enable_full_liw=$enableval,
enable_full_liw=no
)
if test "${enable_full_liw}" = "yes"
then
AC_DEFINE([HCL_ENABLE_FULL_LIW],[1],[Use a full word as a large integer word])
fi
AC_ARG_ENABLE([cxx],
[AS_HELP_STRING([--enable-cxx],[build the library for C++ if a C++ compiler is available (default. yes)])],
enable_cxx_is=$enableval,