[Python-checkins] python/dist/src configure.in, 1.476, 1.477 configure, 1.463, 1.464

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


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

Modified Files:
	configure.in configure 
Log Message:
Use = instead of == as operator to test


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -d -r1.476 -r1.477
--- configure.in	30 Nov 2004 22:09:37 -0000	1.476
+++ configure.in	24 Dec 2004 08:22:17 -0000	1.477
@@ -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.463
retrieving revision 1.464
diff -u -d -r1.463 -r1.464
--- configure	30 Nov 2004 22:09:37 -0000	1.463
+++ configure	24 Dec 2004 08:22:17 -0000	1.464
@@ -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