diff options
author | Guido van Rossum <guido@python.org> | 2000-09-24 16:47:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-24 16:47:19 (GMT) |
commit | 1258049de06832afd12b2c34bf35f42841bc0baf (patch) | |
tree | 9257ae71da1607d7a679c03fb2ed12c04644591b /configure | |
parent | 19f977ba402acb44e7fcae8a7fe2dc37e3e36eca (diff) | |
download | cpython-1258049de06832afd12b2c34bf35f42841bc0baf.zip cpython-1258049de06832afd12b2c34bf35f42841bc0baf.tar.gz cpython-1258049de06832afd12b2c34bf35f42841bc0baf.tar.bz2 |
Stupid typo in the pthread_t test
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.162 +# From configure.in Revision: 1.163 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -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 |