mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
13 lines
526 B
Text
13 lines
526 B
Text
AC_DEFUN([ARABICA_HAS_STD_WSTRING],
|
|
[
|
|
AC_MSG_CHECKING([for std::wstring support])
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string>]],
|
|
[[std::wstring test;]])],
|
|
[AS_VAR_SET(wchar_t_available, yes)],
|
|
[AS_VAR_SET(wchar_t_available, no)])
|
|
AC_MSG_RESULT($wchar_t_available)
|
|
if test $wchar_t_available = no; then
|
|
AC_DEFINE(ARABICA_NO_WCHAR_T, ,[disables wchar_t])
|
|
fi
|
|
AM_CONDITIONAL(HAS_STD_WSTRING, test $wchar_t_available = yes)
|
|
])
|