From 5a0592cf17c0a67982e5bfd6f35414ff42c9a016 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 9 Jun 1999 16:47:49 +0000 Subject: Do not use the RTEMS simpleioctl.h if networking is enabled since that subsystem provides a more robust version of ioctl.h. --- c/src/lib/include/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/c/src/lib/include/Makefile.in b/c/src/lib/include/Makefile.in index 18d89a274a..0c4b854556 100644 --- a/c/src/lib/include/Makefile.in +++ b/c/src/lib/include/Makefile.in @@ -19,7 +19,10 @@ H_PIECES=chain console clockdrv iosupp ringbuf \ spurious timerdrv vmeintr H_FILES=$(H_PIECES:%=$(srcdir)/%.h) -SYS_H_PIECES=ioctl termios utime +SYS_H_PIECES=termios utime +ifeq ($(HAS_NETWORKING),yes) +SYS_H_PIECES+=ioctl +endif SYS_H_FILES=$(SYS_H_PIECES:%=$(srcdir)/sys/%.h) MOTOROLA_H_PIECES=mc68230 mc68681 -- cgit v1.2.3