From 8cf7f806b76d66e49d24724bd99e8e2c64ca4a82 Mon Sep 17 00:00:00 2001 From: Minto van der Sluis Date: Fri, 7 Sep 2007 12:01:30 +0200 Subject: [PATCH] Patched brasero to get it compiled. - Patch found on http://bugzilla.gnome.org/show_bug.cgi?id=462238 --- wip/brasero/SG_FLAG_LUN.patch | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 wip/brasero/SG_FLAG_LUN.patch diff --git a/wip/brasero/SG_FLAG_LUN.patch b/wip/brasero/SG_FLAG_LUN.patch new file mode 100644 index 000000000..2ac62c118 --- /dev/null +++ b/wip/brasero/SG_FLAG_LUN.patch @@ -0,0 +1,27 @@ + +http://bugzilla.gnome.org/show_bug.cgi?id=462238 + +diff -ru brasero-0.6.1.orig/src/scsi/scsi-command.c brasero-0.6.1/src/scsi/scsi-command.c +--- brasero-0.6.1.orig/src/scsi/scsi-command.c 2007-08-25 15:16:23.000000000 +0200 ++++ brasero-0.6.1/src/scsi/scsi-command.c 2007-09-07 11:49:05.000000000 +0200 +@@ -85,7 +85,7 @@ + memset (transport, 0, sizeof (struct sg_io_hdr)); + + transport->interface_id = 'S'; /* mandatory */ +-// transport->flags = SG_FLAG_LUN_INHIBIT|SG_FLAG_DIRECT_IO; ++// transport->flags = SG_FLAG_UNUSED_LUN_INHIBIT|SG_FLAG_DIRECT_IO; + transport->cmdp = cmd->cmd; + transport->cmd_len = cmd->info->size; + transport->dxferp = buffer; +diff -ru brasero-0.6.1.orig/src/scsi/scsi-sg.c brasero-0.6.1/src/scsi/scsi-sg.c +--- brasero-0.6.1.orig/src/scsi/scsi-sg.c 2007-08-25 15:16:23.000000000 +0200 ++++ brasero-0.6.1/src/scsi/scsi-sg.c 2007-09-07 11:49:32.000000000 +0200 +@@ -44,7 +44,7 @@ + memset (&sense_buffer, 0, sizeof (sense_buffer)); + + command->interface_id = 'S'; /* mandatory */ +- command->flags = SG_FLAG_LUN_INHIBIT|SG_FLAG_DIRECT_IO; ++ command->flags = SG_FLAG_UNUSED_LUN_INHIBIT|SG_FLAG_DIRECT_IO; + + /* where to output the scsi sense buffer */ + command->sbp = sense_buffer;