mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
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
This commit is contained in:
parent
87c7f303b0
commit
df3cee6606
1 changed files with 0 additions and 2 deletions
|
@ -35,8 +35,6 @@
|
||||||
|
|
||||||
|
|
||||||
#if defined (HAVE_CPU_PPC64) || defined (HAVE_CPU_PPC)
|
#if defined (HAVE_CPU_PPC64) || defined (HAVE_CPU_PPC)
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/sysctl.h>
|
|
||||||
#include "ppc_zoom_ultimate.h"
|
#include "ppc_zoom_ultimate.h"
|
||||||
#include "ppc_drawings.h"
|
#include "ppc_drawings.h"
|
||||||
#endif /* HAVE_CPU_PPC64 || HAVE_CPU_PPC */
|
#endif /* HAVE_CPU_PPC64 || HAVE_CPU_PPC */
|
||||||
|
|
Loading…
Reference in a new issue