summaryrefslogtreecommitdiff
path: root/scsi.c
diff options
context:
space:
mode:
Diffstat (limited to 'scsi.c')
-rw-r--r--scsi.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/scsi.c b/scsi.c
index ed5b3bb..c49f954 100644
--- a/scsi.c
+++ b/scsi.c
@@ -27,8 +27,11 @@
*/
#include "defs.h"
-#include <sys/ioctl.h>
-#include <scsi/sg.h>
+
+#ifdef HAVE_SCSI_SG_H
+
+# include <sys/ioctl.h>
+# include <scsi/sg.h>
static const struct xlat sg_io_dxfer_direction[] = {
XLAT(SG_DXFER_NONE),
@@ -137,3 +140,5 @@ scsi_ioctl(struct tcb *tcp, long code, long arg)
}
return 1;
}
+
+#endif /* HAVE_SCSI_SG_H */