summaryrefslogtreecommitdiff
path: root/audio/xmcd
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2000-05-06 12:46:13 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2000-05-06 12:46:13 +0000
commit4d07c034bbba61d10442f7fa709b8c5f4cb4c8f6 (patch)
tree657ec2389515b0a5292d65c8e37a5803e3c95dd8 /audio/xmcd
parentUpgrade to 2.00-12 (diff)
Make xmcd compile and build on the Alpha.
Submitted by: Mark Abene <phiber@radicalmedia.com>
Notes
Notes: svn path=/head/; revision=28312
Diffstat (limited to 'audio/xmcd')
-rw-r--r--audio/xmcd/files/patch-af50
1 files changed, 50 insertions, 0 deletions
diff --git a/audio/xmcd/files/patch-af b/audio/xmcd/files/patch-af
new file mode 100644
index 000000000000..c1a5a637a19c
--- /dev/null
+++ b/audio/xmcd/files/patch-af
@@ -0,0 +1,50 @@
+*** libdi_d/fbioc.c.orig Sat Feb 5 02:26:26 2000
+--- libdi_d/fbioc.c Sat May 6 08:26:53 2000
+***************
+*** 123,129 ****
+ * FALSE - ioctl failed
+ */
+ STATIC bool_t
+! fbioc_send(int cmd, void *arg, bool_t prnerr)
+ {
+ int i,
+ ret;
+--- 123,129 ----
+ * FALSE - ioctl failed
+ */
+ STATIC bool_t
+! fbioc_send(unsigned int cmd, void *arg, bool_t prnerr)
+ {
+ int i,
+ ret;
+***************
+*** 135,148 ****
+ if (app_data.debug) {
+ for (i = 0; iname[i].name != NULL; i++) {
+ if (iname[i].cmd == cmd) {
+! (void) fprintf(errfp, "\nIOCTL: %s arg=0x%x ",
+! iname[i].name, (int) arg);
+ break;
+ }
+ }
+ if (iname[i].name == NULL)
+! (void) fprintf(errfp, "\nIOCTL: 0x%x arg=0x%x ",
+! cmd, (int) arg);
+ }
+
+ ret = ioctl(fbioc_fd, cmd, arg);
+--- 135,148 ----
+ if (app_data.debug) {
+ for (i = 0; iname[i].name != NULL; i++) {
+ if (iname[i].cmd == cmd) {
+! (void) fprintf(errfp, "\nIOCTL: %s arg=0x%lx ",
+! iname[i].name, (long) arg);
+ break;
+ }
+ }
+ if (iname[i].name == NULL)
+! (void) fprintf(errfp, "\nIOCTL: 0x%x arg=0x%lx ",
+! cmd, (long) arg);
+ }
+
+ ret = ioctl(fbioc_fd, cmd, arg);