added --enable-full-liw to configure.ac
This commit is contained in:
11
configure.ac
11
configure.ac
@ -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,
|
||||
|
Reference in New Issue
Block a user