This commit is contained in:
@ -93,7 +93,8 @@ AC_CHECK_SIZEOF(__int16)
|
||||
AC_CHECK_SIZEOF(__int32)
|
||||
AC_CHECK_SIZEOF(__int64)
|
||||
AC_CHECK_SIZEOF(__int128)
|
||||
AC_CHECK_SIZEOF(void*)
|
||||
dnl AC_CHECK_SIZEOF doesn't work without white-space between void and *
|
||||
AC_CHECK_SIZEOF(void *)
|
||||
AC_CHECK_SIZEOF(float)
|
||||
AC_CHECK_SIZEOF(double)
|
||||
AC_CHECK_SIZEOF(long double)
|
||||
@ -124,7 +125,7 @@ AC_DEFINE_UNQUOTED(ASE_PKGAUTHOR,"${PACKAGE_BUGREPORT}", [author's email address
|
||||
AC_ARG_ENABLE([wchar], [AC_HELP_STRING([--enable-wchar],
|
||||
[use wchar_t a default charater type when enabled (default. yes)])],
|
||||
enable_wchar_is=$enableval,enable_wchar_is=yes)
|
||||
[ "${ac_cv_sizeof_wchar_t}" = "0" ] && enable_wchar_is=no
|
||||
test "${ac_cv_sizeof_wchar_t}" = "0" && enable_wchar_is=no
|
||||
if test "$enable_wchar_is" = "yes"
|
||||
then
|
||||
AC_DEFINE([ASE_CHAR_IS_WCHAR],[],[char is wchar])
|
||||
|
Reference in New Issue
Block a user