summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-09-22 19:41:56 (GMT)
committerGuido van Rossum <guido@python.org>2000-09-22 19:41:56 (GMT)
commite126233cd984d33644d26227842cf6f4360446d9 (patch)
tree61db472230e541f497acc3f49b202c9bc5b2a57f /configure
parentd9a8dec1356e19798492c2abb945c22f00299f33 (diff)
downloadcpython-e126233cd984d33644d26227842cf6f4360446d9.zip
cpython-e126233cd984d33644d26227842cf6f4360446d9.tar.gz
cpython-e126233cd984d33644d26227842cf6f4360446d9.tar.bz2
Poke-and-hope attempt to fix Bugs #115006 and #114324: fix the test
for pthread_t (to calculate its size) to work even if pthread_t is a struct.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 6880dc4..07ff0c1 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.161
+# From configure.in Revision: 1.162
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
@@ -769,7 +769,7 @@ else
fi
echo "$ac_t""$with_cxx" 1>&6
-SET_CXX="CXX = $CXX"
+SET_CXX="CXX=$CXX"
#AC_MSG_CHECKING(CCC)
#if test -z "$CCC"
@@ -2522,7 +2522,7 @@ cat > conftest.$ac_ext <<EOF
#include "confdefs.h"
#include <pthread.h>
int main() {
-pthread_t x; x = (pthread_t)0;
+pthread_t x; x = *(pthread_t)*0;
; return 0; }
EOF
if { (eval echo configure:2529: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then