From 8d5f4c4d41f29777b1ceee8c0f5965931ac0f4e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 26 Nov 2014 19:43:21 +0100 Subject: [PATCH] Fix FTBFS in oggPlayObject_impl.h on openbsd because semun definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- oggvorbis_artsplugin/oggPlayObject_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ #else /* according to X/OPEN we have to define it ourselves */