mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Need to quote test for posix_threads on HPUX11
This commit is contained in:
parent
1a7a894d90
commit
a978ab0d8c
2 changed files with 3 additions and 3 deletions
4
configure
vendored
4
configure
vendored
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.360 .
|
# From configure.in Revision: 1.361 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.53 for python 2.3.
|
# Generated by GNU Autoconf 2.53 for python 2.3.
|
||||||
#
|
#
|
||||||
|
@ -11214,7 +11214,7 @@ _ACEOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test $posix_threads != "yes"; then
|
if test "$posix_threads" != "yes"; then
|
||||||
echo "$as_me:$LINENO: checking for thr_create in -lthread" >&5
|
echo "$as_me:$LINENO: checking for thr_create in -lthread" >&5
|
||||||
echo $ECHO_N "checking for thr_create in -lthread... $ECHO_C" >&6
|
echo $ECHO_N "checking for thr_create in -lthread... $ECHO_C" >&6
|
||||||
if test "${ac_cv_lib_thread_thr_create+set}" = set; then
|
if test "${ac_cv_lib_thread_thr_create+set}" = set; then
|
||||||
|
|
|
@ -1360,7 +1360,7 @@ pthread_create (NULL, NULL, start_routine, NULL)], [
|
||||||
THREADOBJ="Python/thread.o"
|
THREADOBJ="Python/thread.o"
|
||||||
USE_THREAD_MODULE=""])
|
USE_THREAD_MODULE=""])
|
||||||
|
|
||||||
if test $posix_threads != "yes"; then
|
if test "$posix_threads" != "yes"; then
|
||||||
AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
|
AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
|
||||||
LIBS="$LIBS -lthread"
|
LIBS="$LIBS -lthread"
|
||||||
THREADOBJ="Python/thread.o"
|
THREADOBJ="Python/thread.o"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue