Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-IceS
Commits
9e565b1e
Commit
9e565b1e
authored
Mar 13, 2003
by
Karl Heyes
Browse files
fix for certain versions of OS X which need thread options for finding
pthread_rwlock_t svn path=/trunk/m4/; revision=4481
parent
1e262d1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
m4/acx_pthread.m4
View file @
9e565b1e
...
...
@@ -108,7 +108,7 @@ for flag in $acx_pthread_flags; do
# functions on Solaris that doesn't have a non-functional libc stub.
# We try pthread_create on general principles.
AC_TRY_LINK([#include <pthread.h>],
[pthread_t th; pthread_join(th, 0);
[pthread_t th;
pthread_rwlock_t rw;
pthread_join(th, 0);
pthread_attr_init(0); pthread_cleanup_push(0, 0);
pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
[acx_pthread_ok=yes])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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