From b9923df170104320e55bff05ecc2a0105067f9cb Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Wed, 9 Jan 2013 22:04:50 +0000 Subject: imxtools/nwztools: fix compilation for windows There is a windows port of the sg_utils library for scsi pass- through. This little changes make it compile under mingw. A better fix would be to implement direct ioctl on both windows and linux but that's already better than nothing Change-Id: I0d77cd1bad69806a66f0590362f165f24fa240e9 --- utils/imxtools/scsitools/scsitool.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'utils/imxtools/scsitools/scsitool.c') diff --git a/utils/imxtools/scsitools/scsitool.c b/utils/imxtools/scsitools/scsitool.c index 5fe3f6fa8a..c534667f05 100644 --- a/utils/imxtools/scsitools/scsitool.c +++ b/utils/imxtools/scsitools/scsitool.c @@ -31,12 +31,19 @@ #include #include #include +#ifndef _WIN32 #include +#endif #include #include #include "misc.h" #include "stmp_scsi.h" +/* the windows port doesn't have scsi.h and GOOD */ +#ifndef GOOD +#define GOOD 0x00 +#endif + bool g_debug = false; bool g_force = false; int g_dev_fd = 0; -- cgit v1.2.3