Use = instead of == as operator to test

This commit is contained in:
Matthias Klose 2004-12-24 08:22:17 +00:00
parent ac7836ae55
commit 7dbeed7d2e
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -18884,7 +18884,7 @@ _ACEOF
# wchar_t is only usable if it maps to an unsigned type
if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
-a "$ac_cv_wchar_t_signed" == "no"
-a "$ac_cv_wchar_t_signed" = "no"
then
PY_UNICODE_TYPE="wchar_t"

View File

@ -2760,7 +2760,7 @@ else
# wchar_t is only usable if it maps to an unsigned type
if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
-a "$ac_cv_wchar_t_signed" == "no"
-a "$ac_cv_wchar_t_signed" = "no"
then
PY_UNICODE_TYPE="wchar_t"
AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,