summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-23 15:36:00 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-23 15:36:00 +0000
commit01b46536ea158e6d2a2640c1f1562697897b61be (patch)
tree7d41c4af59a2dcaf7832acc2f98ddf413bf150dc /configure
parent1b231d2d490ceb7a65ee8e16f25867b50cdf3689 (diff)
downloadmpv-01b46536ea158e6d2a2640c1f1562697897b61be.tar.bz2
mpv-01b46536ea158e6d2a2640c1f1562697897b61be.tar.xz
do not use pthreads on hpux (broken, hardly useful).
For reference, I get the following when starting a version compiled with it: Pthread internal error: message: __libc_reinit() failed, file: /ux/core/kern/pthreads/pthread.c, line: 1093 Return Pointer is 0xc0e29273 Quit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14227 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 406a9be5be..3b5956fe30 100755
--- a/configure
+++ b/configure
@@ -2678,6 +2678,8 @@ int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ?
EOF
if mingw32 ; then
_ld_pthread=''
+elif hpux ; then
+ _ld_pthread=''
elif ( cc_check && $TMPO ) ; then # QNX
_ld_pthread=''
elif ( cc_check -lpthread && $TMPO ) ; then