summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-11 07:15:30 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-04-11 07:15:30 +0000
commita79c8142dc952b32be479580193c8a280330ef8c (patch)
treef4c0625007086b55b191c60ee8169ac7aa67cdeb /configure
parentf6817e672ee3b6efc627e036e2c7fee19a97b1ab (diff)
downloadcpython-a79c8142dc952b32be479580193c8a280330ef8c.tar.gz
Correct test whether wchar_t is unsigned. Fixed crash
in #1454485.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index f8183f2c6c..6f2d0952c2 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 43615 .
+# From configure.in Revision: 43748 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.5.
#
@@ -20019,7 +20019,8 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <wchar.h>
int main()
{
- exit((((wchar_t) -1) < ((wchar_t) 0)) ? 1 : 0);
+ /* Success: exit code 0 */
+ exit((((wchar_t) -1) < ((wchar_t) 0)) ? 0 : 1);
}
_ACEOF