File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -14682,19 +14682,21 @@ fi
1468214682$as_echo " $ac_cv_wchar_t_signed " >&6 ; }
1468314683fi
1468414684
14685+ { $as_echo " $as_me :${as_lineno-$LINENO } : checking whether wchar_t is usable" >&5
14686+ $as_echo_n " checking whether wchar_t is usable... " >&6 ; }
1468514687# wchar_t is only usable if it maps to an unsigned type
1468614688if test " $ac_cv_sizeof_wchar_t " -ge 2 \
1468714689 -a " $ac_cv_wchar_t_signed " = " no"
1468814690then
14689- HAVE_USABLE_WCHAR_T=" yes"
1469014691
1469114692$as_echo " #define HAVE_USABLE_WCHAR_T 1" >> confdefs.h
1469214693
14694+ { $as_echo " $as_me :${as_lineno-$LINENO } : result: yes" >&5
14695+ $as_echo " yes" >&6 ; }
1469314696else
14694- HAVE_USABLE_WCHAR_T=" no usable wchar_t found"
14697+ { $as_echo " $as_me :${as_lineno-$LINENO } : result: no" >&5
14698+ $as_echo " no" >&6 ; }
1469514699fi
14696- { $as_echo " $as_me :${as_lineno-$LINENO } : result: $HAVE_USABLE_WCHAR_T " >&5
14697- $as_echo " $HAVE_USABLE_WCHAR_T " >&6 ; }
1469814700
1469914701# check for endianness
1470014702 { $as_echo " $as_me :${as_lineno-$LINENO } : checking whether byte ordering is bigendian" >&5
Original file line number Diff line number Diff line change @@ -4621,19 +4621,19 @@ then
46214621 AC_MSG_RESULT ( $ac_cv_wchar_t_signed )
46224622fi
46234623
4624+ AC_MSG_CHECKING ( whether wchar_t is usable )
46244625# wchar_t is only usable if it maps to an unsigned type
46254626if test "$ac_cv_sizeof_wchar_t" -ge 2 \
46264627 -a "$ac_cv_wchar_t_signed" = "no"
46274628then
4628- HAVE_USABLE_WCHAR_T="yes"
46294629 AC_DEFINE ( HAVE_USABLE_WCHAR_T , 1 ,
46304630 [ Define if you have a useable wchar_t type defined in wchar.h; useable
46314631 means wchar_t must be an unsigned type with at least 16 bits. (see
46324632 Include/unicodeobject.h).] )
4633+ AC_MSG_RESULT ( yes )
46334634else
4634- HAVE_USABLE_WCHAR_T="no usable wchar_t found"
4635+ AC_MSG_RESULT ( no )
46354636fi
4636- AC_MSG_RESULT ( $HAVE_USABLE_WCHAR_T )
46374637
46384638# check for endianness
46394639AC_C_BIGENDIAN
You can’t perform that action at this time.
0 commit comments