Skip to content
Snippets Groups Projects
Commit c6c404dc authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard
Browse files

Added a check for <scsi/scsi.h> and include it in dlls/ntdll/cdrom.c.

parent 3e83ec29
No related branches found
No related tags found
No related merge requests found
......@@ -13828,6 +13828,7 @@ done
 
 
 
 
 
for ac_header in \
......@@ -13864,6 +13865,7 @@ for ac_header in \
regex.h \
sched.h \
scsi/sg.h \
scsi/scsi.h \
scsi/scsi_ioctl.h \
socket.h \
stdint.h \
......
......@@ -1021,6 +1021,7 @@ AC_CHECK_HEADERS(\
regex.h \
sched.h \
scsi/sg.h \
scsi/scsi.h \
scsi/scsi_ioctl.h \
socket.h \
stdint.h \
......
......@@ -43,6 +43,10 @@
#ifdef HAVE_SCSI_SG_H
# include <scsi/sg.h>
#endif
#ifdef HAVE_SCSI_SCSI_H
# include <scsi/scsi.h>
# undef REASSIGN_BLOCKS /* avoid conflict with winioctl.h */
#endif
#ifdef HAVE_SCSI_SCSI_IOCTL_H
# include <scsi/scsi_ioctl.h>
#endif
......
......@@ -428,6 +428,9 @@
/* Define to 1 if you have the <sched.h> header file. */
#undef HAVE_SCHED_H
/* Define to 1 if you have the <scsi/scsi.h> header file. */
#undef HAVE_SCSI_SCSI_H
/* Define to 1 if you have the <scsi/scsi_ioctl.h> header file. */
#undef HAVE_SCSI_SCSI_IOCTL_H
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment