summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dahl <matt2000@users.sourceforge.net>2001-11-06 13:16:47 +0000
committerMatthias Dahl <matt2000@users.sourceforge.net>2001-11-06 13:16:47 +0000
commit91ff5fd71b760b1b1d8cdfccf536ec7d73436ca2 (patch)
tree31875fbaced130c104b571e8251678fd13ba1670
parentd3b284943e2d9852821f5958b6f7317a84a83cb3 (diff)
downloadxine-lib-91ff5fd71b760b1b1d8cdfccf536ec7d73436ca2.tar.gz
xine-lib-91ff5fd71b760b1b1d8cdfccf536ec7d73436ca2.tar.bz2
Added missing include for proper compilation on solaris. Thanks to Ian
Johnston for reporting it. CVS patchset: 968 CVS date: 2001/11/06 13:16:47
-rw-r--r--src/video_out/video_out_syncfb.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c
index 6e31fcb70..d7aa278dd 100644
--- a/src/video_out/video_out_syncfb.c
+++ b/src/video_out/video_out_syncfb.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_syncfb.c,v 1.35 2001/11/06 13:08:15 matt2000 Exp $
+ * $Id: video_out_syncfb.c,v 1.36 2001/11/06 13:16:47 matt2000 Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -38,6 +38,9 @@
#include <X11/Xlib.h>
#include <X11/Xutil.h>
+#ifdef __sun
+#include <sys/ioccom.h>
+#endif
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/types.h>