From df3cee6606bed13d2edc8480ed244d480ab4790c Mon Sep 17 00:00:00 2001 From: Antoine Jacoutot Date: Sat, 16 Jul 2011 23:47:50 +0100 Subject: [PATCH] goom: fix build on PPC on openbsd A missing sys/param.h include results in: /usr/include/sys/proc.h:64: error: 'MAXLOGNAME' undeclared here (not in a function) /usr/include/sys/proc.h:285: error: 'MAXCOMLEN' undeclared here (not in a function) when compiling goom on openbsd/ppc. We can just remove the two sys/ includes here, they are not needed for anything. https://bugzilla.gnome.org/show_bug.cgi?id=654749 --- gst/goom/plugin_info.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst/goom/plugin_info.c b/gst/goom/plugin_info.c index aba15ca..b50c9dd 100644 --- a/gst/goom/plugin_info.c +++ b/gst/goom/plugin_info.c @@ -35,8 +35,6 @@ #if defined (HAVE_CPU_PPC64) || defined (HAVE_CPU_PPC) -#include -#include #include "ppc_zoom_ultimate.h" #include "ppc_drawings.h" #endif /* HAVE_CPU_PPC64 || HAVE_CPU_PPC */ -- 2.7.4