Commit 70d7936a authored by Ryan C. Gordon's avatar Ryan C. Gordon

Fixed (?) semaphore support on HPUX 11.x ...

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40426
parent 981df5b5
......@@ -1176,6 +1176,10 @@ CheckPTHREAD()
pthread_cflags="-D_REENTRANT -mthreads"
pthread_lib="-lpthread"
;;
*-*-hpux11*)
pthread_cflags="-D_REENTRANT"
pthread_lib="-L/usr/lib -lpthread"
;;
*-*-qnx*)
pthread_cflags=""
pthread_lib=""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment