blob: f14dd76e440c3634eea657cdfe399b3cc4d81596 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- gnome-settings-daemon/gnome-settings-multimedia-keys.c.orig 2007-10-28 13:37:40.000000000 -0400
+++ gnome-settings-daemon/gnome-settings-multimedia-keys.c 2007-10-28 13:38:23.000000000 -0400
@@ -610,8 +610,11 @@
if ((command != NULL) && (strcmp (command, "") != 0))
execute (acme, command, FALSE, FALSE);
else
+#if __FreeBSD__
+ execute (acme, "cdcontrol eject", FALSE, FALSE);
+#else
execute (acme, "eject -T", FALSE, FALSE);
-
+#endif
g_free (command);
}
|