freebsd-ports/multimedia/totem/files/patch-src_totem-disk.c
Michael Johnson 46161b9f59 - Update to 0.99.22 to fix problem with playing any video file in gnome 2.8
- Use new INSTALLS_OMF

Note: dvd support is currentlly broken.

Approved by:	marcus (co mentor)
2004-11-25 08:03:48 +00:00

39 lines
1 KiB
C

--- src/totem-disc.c.orig Tue Nov 23 04:03:19 2004
+++ src/totem-disc.c Tue Nov 23 04:05:27 2004
@@ -25,12 +25,35 @@
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
-#include <mntent.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
+
+#ifdef __FreeBSD__
+#include <sys/cdio.h>
+#include <sys/disklabel.h>
+
+#define CDROM_DRIVE_STATUS 0x5326
+#define CDROM_DISC_STATUS 0x5327
+#define CDS_AUDIO 100
+#define CDS_MIXED 105
+#define CDS_DATA_1 101
+#define CDS_DATA_2 102
+#define CDS_NO_INFO 0 /* if not implemented */
+#define CDS_NO_DISC 1
+#define CDS_TRAY_OPEN 2
+#define CDS_DRIVE_NOT_READY 3
+#define CDS_DISC_OK 4
+#define CDS_XA_2_1 103
+#define CDS_XA_2_2 104
+#define CDC_DVD 0x8000
+#define ENOMEDIUM ENODEV
+#define CDROM_GET_CAPABILITY CDIOCCLRDEBUG
+#else
+#include <mntent.h>
#include <linux/cdrom.h>
+#endif
#include <glib.h>
#include <glib/gi18n.h>