Don't use Posix semaphores on Solaris 8. Fixes #662787.

This commit is contained in:
Martin v. Löwis 2003-01-21 10:14:41 +00:00
parent 2da75faa87
commit dfc33fd8db
4 changed files with 20 additions and 2 deletions

View file

@ -104,7 +104,7 @@
/* Whether or not to use semaphores directly rather than emulating them with
* mutexes and condition variables:
*/
#ifdef _POSIX_SEMAPHORES
#if defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES)
# define USE_SEMAPHORES
#else
# undef USE_SEMAPHORES