pkgsrc/sysutils/gcdmaster/patches/patch-ab
drochner ae3a2b4922 initial import of gcdmaster-1.1.5:
graphical frontend for cdrdao-1.1.5 with some editing capability
2001-05-19 13:02:23 +00:00

18 lines
497 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2001/05/19 13:02:23 drochner Exp $
have a default scsi device which is likely to be correct (at least
on single CD systems).
--- dao/main.cc.orig Tue Oct 26 12:13:46 1999
+++ dao/main.cc Fri Jul 7 12:20:08 2000
@@ -157,5 +157,9 @@
#else
-static const char *SCSI_DEVICE = "0,0,0";
+#if defined (__i386__)
+static const char *SCSI_DEVICE = "/dev/rcd0d";
+#else
+static const char *SCSI_DEVICE = "/dev/rcd0c";
+#endif /* __i386__ */
static int FIFO_BUFFERS = 32;