[Python-checkins] python/dist/src configure.in, 1.475.2.1, 1.475.2.2 configure, 1.462.2.1, 1.462.2.2

doko at users.sourceforge.net doko at users.sourceforge.net
Fri Dec 24 09:24:26 CET 2004


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6397

Modified Files:
      Tag: release24-maint
	configure.in configure 
Log Message:
use = instead of == as operator for test


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.475.2.1
retrieving revision 1.475.2.2
diff -u -d -r1.475.2.1 -r1.475.2.2
--- configure.in	30 Nov 2004 22:08:27 -0000	1.475.2.1
+++ configure.in	24 Dec 2004 08:24:05 -0000	1.475.2.2
@@ -2760,7 +2760,7 @@
 
   # 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,

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.462.2.1
retrieving revision 1.462.2.2
diff -u -d -r1.462.2.1 -r1.462.2.2
--- configure	30 Nov 2004 22:08:28 -0000	1.462.2.1
+++ configure	24 Dec 2004 08:24:21 -0000	1.462.2.2
@@ -18884,7 +18884,7 @@
 
   # 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"
 



More information about the Python-checkins mailing list