diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2014-11-26 19:43:21 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-11-26 19:43:21 +0100 |
commit | 8d5f4c4d41f29777b1ceee8c0f5965931ac0f4e7 (patch) | |
tree | e711f74b3783a3f9fb4cf1b38f1bddf76aa9cbca /oggvorbis_artsplugin | |
parent | 0b97b2f432c1ba514e8df0fb94645c353fc87634 (diff) | |
download | tdemultimedia-8d5f4c4d41f29777b1ceee8c0f5965931ac0f4e7.tar.gz tdemultimedia-8d5f4c4d41f29777b1ceee8c0f5965931ac0f4e7.zip |
Fix FTBFS in oggPlayObject_impl.h on openbsd because semun definition
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'oggvorbis_artsplugin')
-rw-r--r-- | oggvorbis_artsplugin/oggPlayObject_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oggvorbis_artsplugin/oggPlayObject_impl.h b/oggvorbis_artsplugin/oggPlayObject_impl.h index 2f1b0c0c..16a4ae24 100644 --- a/oggvorbis_artsplugin/oggPlayObject_impl.h +++ b/oggvorbis_artsplugin/oggPlayObject_impl.h @@ -1,7 +1,7 @@ #ifndef OGGPLAYER_IMPL_H #define OGGPLAYER_IMPL_H "$Id$" -#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) || defined(__DragonFly__) +#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) || defined(__DragonFly__) || defined(__OpenBSD__) /* union semun is defined by including <sys/sem.h> */ #else /* according to X/OPEN we have to define it ourselves */ |