diff options
author | Skip Montanaro <skip@pobox.com> | 2004-01-17 03:04:46 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-01-17 03:04:46 (GMT) |
commit | f8712e5fc3e133f5cb627164866b7a207d921868 (patch) | |
tree | cd611ea4de358d9078860039cf7b87cb1fcd79ae /configure.in | |
parent | 4d474becd8cbe76e8a72e4b834be285a156a3787 (diff) | |
download | cpython-f8712e5fc3e133f5cb627164866b7a207d921868.zip cpython-f8712e5fc3e133f5cb627164866b7a207d921868.tar.gz cpython-f8712e5fc3e133f5cb627164866b7a207d921868.tar.bz2 |
Remove support for systems defining __d6_pthread_create.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 602b864..412befb 100644 --- a/configure.in +++ b/configure.in @@ -1642,13 +1642,6 @@ pthread_create (NULL, NULL, start_routine, NULL)], [ posix_threads=yes LIBS="$LIBS -lc_r" THREADOBJ="Python/thread.o"], [ - AC_CHECK_LIB(thread, __d6_pthread_create, [AC_DEFINE(WITH_THREAD) - echo Systems with __d6_pthread_create are not supported anymore. - echo See README - exit 1 - posix_threads=yes - LIBS="$LIBS -lthread" - THREADOBJ="Python/thread.o"], [ AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD) posix_threads=yes LIBS="$LIBS -lpthread" @@ -1658,7 +1651,7 @@ pthread_create (NULL, NULL, start_routine, NULL)], [ LIBS="$LIBS -lcma" THREADOBJ="Python/thread.o"],[ USE_THREAD_MODULE="#"]) - ])])])])])])])])])])]) + ])])])])])])])])])]) AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD) LIBS="$LIBS -lmpc" |