summaryrefslogtreecommitdiff
path: root/emulators/mtools
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2000-02-25 20:39:10 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2000-02-25 20:39:10 +0000
commit5c317912f6754968a51d1dce616417d10c79fbd9 (patch)
treee85a95dbc76f14a00fcc00f1695456d940804d08 /emulators/mtools
parentUpdate kdecore shlib number, this port was added between my grep and (diff)
Fix compilation for pre-cam systems.
PR: ports/16986 Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
Notes
Notes: svn path=/head/; revision=26283
Diffstat (limited to 'emulators/mtools')
-rw-r--r--emulators/mtools/files/patch-f30
1 files changed, 30 insertions, 0 deletions
diff --git a/emulators/mtools/files/patch-f b/emulators/mtools/files/patch-f
new file mode 100644
index 000000000000..b100e9cebec7
--- /dev/null
+++ b/emulators/mtools/files/patch-f
@@ -0,0 +1,30 @@
+--- scsi.c.orig Tue Mar 16 03:11:18 1999
++++ scsi.c Sat Feb 26 00:48:35 2000
+@@ -49,7 +49,7 @@
+ #include <sys/scsicmd.h>
+ #endif
+
+-#if (defined(OS_freebsd)) && (__FreeBSD__ >= 2)
++#if (defined(OS_freebsd)) && (__FreeBSD__ >= 3)
+ #include <camlib.h>
+ #endif
+
+@@ -64,7 +64,7 @@
+
+ int scsi_open(const char *name, int flag, int mode, void **extra_data)
+ {
+-#if (defined(OS_freebsd)) && (__FreeBSD__ >= 2)
++#if (defined(OS_freebsd)) && (__FreeBSD__ >= 3)
+ struct cam_device *cam_dev;
+ cam_dev = cam_open_device(name, O_RDWR);
+ *extra_data = (void *) cam_dev;
+@@ -224,7 +224,7 @@
+ }
+
+ return 0;
+-#elif (defined OS_freebsd) && (__FreeBSD__ >= 2)
++#elif (defined OS_freebsd) && (__FreeBSD__ >= 3)
+ #define MSG_SIMPLE_Q_TAG 0x20 /* O/O */
+ union ccb *ccb;
+ int flags;
+