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
d8d39a00
Commit
d8d39a00
authored
Jul 10, 2003
by
Skip Montanaro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid testing for -Kthread or -pthread if the default build environment
supports pthreads
parent
7adcfad4
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3085 additions
and
2240 deletions
+3085
-2240
configure
configure
+3078
-2237
configure.in
configure.in
+7
-3
No files found.
configure
View file @
d8d39a00
This diff is collapsed.
Click to expand it.
configure.in
View file @
d8d39a00
...
...
@@ -751,7 +751,11 @@ int main(){
return 0;
}
],
ac_cv_pthread_is_default=yes,
[
ac_cv_pthread_is_default=yes
ac_cv_kthread=no
ac_cv_pthread=no
],
ac_cv_pthread_is_default=no,
ac_cv_pthread_is_default=no)
])
...
...
@@ -791,7 +795,7 @@ CC="$ac_save_cc"])
AC_MSG_RESULT($ac_cv_kpthread)
fi
if test $ac_cv_kpthread = no
if test $ac_cv_kpthread = no
-a $ac_cv_pthread_is_default = no
then
# -Kthread, if available, provides the right #defines
# and linker options to make pthread_create available
...
...
@@ -822,7 +826,7 @@ CC="$ac_save_cc"])
AC_MSG_RESULT($ac_cv_kthread)
fi
if test $ac_cv_kthread = no
if test $ac_cv_kthread = no
-a $ac_cv_pthread_is_default = no
then
# -pthread, if available, provides the right #defines
# and linker options to make pthread_create available
...
...
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