diff options
author | marcus <marcus@FreeBSD.org> | 2003-11-24 09:26:53 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-11-24 09:26:53 +0800 |
commit | 7c480d2e47c43a184fc1b5554debb68e37a63068 (patch) | |
tree | c27e5d084ed05be2c5bb5f24a7df8a45b800dfc9 /multimedia/gstreamer-plugins80 | |
parent | 8f0f3bf1175f73acbd6bf9f06428425c7f19c704 (diff) | |
download | freebsd-ports-gnome-7c480d2e47c43a184fc1b5554debb68e37a63068.tar.gz freebsd-ports-gnome-7c480d2e47c43a184fc1b5554debb68e37a63068.tar.zst freebsd-ports-gnome-7c480d2e47c43a184fc1b5554debb68e37a63068.zip |
Fix build on Alpha.
Reported by: bento via kris
Approved by: portmgr (implicit)
Diffstat (limited to 'multimedia/gstreamer-plugins80')
-rw-r--r-- | multimedia/gstreamer-plugins80/files/patch-sys_xvideo_gstxvimage.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/multimedia/gstreamer-plugins80/files/patch-sys_xvideo_gstxvimage.c b/multimedia/gstreamer-plugins80/files/patch-sys_xvideo_gstxvimage.c index 274283fb0939..cb156ee6bf8d 100644 --- a/multimedia/gstreamer-plugins80/files/patch-sys_xvideo_gstxvimage.c +++ b/multimedia/gstreamer-plugins80/files/patch-sys_xvideo_gstxvimage.c @@ -1,12 +1,21 @@ ---- sys/xvideo/gstxvimage.c.orig Mon Oct 13 15:28:54 2003 -+++ sys/xvideo/gstxvimage.c Mon Oct 13 15:29:24 2003 -@@ -20,6 +20,9 @@ +--- sys/xvideo/gstxvimage.c.orig Sun Nov 23 20:17:00 2003 ++++ sys/xvideo/gstxvimage.c Sun Nov 23 20:25:19 2003 +@@ -20,6 +20,10 @@ #include "config.h" #include <errno.h> ++#include <sys/types.h> +#include <machine/param.h> +#include <sys/types.h> +#include <sys/ipc.h> #include <sys/shm.h> /* for SHM symbols */ #include <gst/gst.h> /* gcc -ansi -pedantic on GNU/Linux causes warnings and errors +@@ -34,7 +38,6 @@ + + #include <stdio.h> + #include <stdlib.h> +-#include <sys/types.h> + + #if defined (HAVE_IPC_H) && defined (HAVE_SHM_H) && defined (HAVE_XSHM_H) + #define USE_SHM |