Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
fdc62551
...
fdc62551a2b559e59b83f30e5a1cf3f8c8dbe35a
authored
2001-05-28 14:22:44 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
check for $enable_threads before checking for $usepthread
1 parent
d8fc9605
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
configure.in
configure.in
View file @
fdc6255
...
...
@@ -121,7 +121,7 @@ AC_SUBST(AUTHLIBS)
dnl Check threading support
# We have to rearrange things a little, it appears that the new autoconf
# does not like long cascading AC_CHECK_LIB.
if test x"$usepthread" = x"yes"; then
if test x"$
enable_threads" = x"yes" -a x"$
usepthread" = x"yes"; then
AC_CHECK_LIB(pthread, pthread_cancel, have_libpthread=yes
have_libpthread=no)
if test x"$have_libpthread" = x"yes"; then
...
...
Please
register
or
sign in
to post a comment