* m4/jm-macros.m4: Check for the header.
* src/dd.c: Avoid the workaround where the header
is not available (on non glibc systems).
* src/shred.c: Likewise.
paths.h
priv.h
stropts.h
+ sys/mtio.h
sys/param.h
sys/systeminfo.h
syslog.h
The offending behavior has been confirmed with an Exabyte SCSI tape
drive accessed via /dev/nst0 on both Linux 2.2.17 and 2.4.16 kernels. */
-#ifdef __linux__
+#if defined __linux__ && HAVE_SYS_MTIO_H
# include <sys/mtio.h>
#include <assert.h>
#include <setjmp.h>
#include <sys/types.h>
-#ifdef __linux__
+#if defined __linux__ && HAVE_SYS_MTIO_H
# include <sys/mtio.h>
#endif
{
if (S_ISCHR (st->st_mode))
{
-#ifdef __linux__
+#if defined __linux__ && HAVE_SYS_MTIO_H
/* In the Linux kernel, lseek does not work on tape devices; it
returns a randomish value instead. Try the low-level tape
rewind operation first. */