Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2262bcf3
Commit
2262bcf3
authored
Nov 02, 2002
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Need to quote test for posix_threads on HPUX11
parent
e48f8c01
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
configure
configure
+2
-2
configure.in
configure.in
+1
-1
No files found.
configure
View file @
2262bcf3
#! /bin/sh
# From configure.in Revision: 1.36
0
.
# From configure.in Revision: 1.36
1
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
...
...
@@ -11214,7 +11214,7 @@ _ACEOF
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
$ECHO_N
"checking for thr_create in -lthread...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_lib_thread_thr_create
+set
}
"
=
set
;
then
...
...
configure.in
View file @
2262bcf3
...
...
@@ -1360,7 +1360,7 @@ pthread_create (NULL, NULL, start_routine, NULL)], [
THREADOBJ="Python/thread.o"
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)
LIBS="$LIBS -lthread"
THREADOBJ="Python/thread.o"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment