summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
Diffstat (limited to 'c')
-rw-r--r--c/src/exec/libcsupport/src/Makefile.am2
-rw-r--r--c/src/exec/libcsupport/src/termios.c2
-rw-r--r--c/src/lib/ChangeLog7
-rw-r--r--c/src/lib/include/rtems/Makefile.am2
-rw-r--r--c/src/lib/libc/Makefile.am2
-rw-r--r--c/src/lib/libc/termios.c2
6 files changed, 12 insertions, 5 deletions
diff --git a/c/src/exec/libcsupport/src/Makefile.am b/c/src/exec/libcsupport/src/Makefile.am
index d2bd6be202..717c2da633 100644
--- a/c/src/exec/libcsupport/src/Makefile.am
+++ b/c/src/exec/libcsupport/src/Makefile.am
@@ -81,6 +81,6 @@ $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
DOC_FILES = TODO CASES
EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \
- $(UNIX_C_FILES) termiostypes.h
+ $(UNIX_C_FILES)
include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/exec/libcsupport/src/termios.c b/c/src/exec/libcsupport/src/termios.c
index 24ea914278..74583cae2f 100644
--- a/c/src/exec/libcsupport/src/termios.c
+++ b/c/src/exec/libcsupport/src/termios.c
@@ -25,7 +25,7 @@
#include <unistd.h>
#include <sys/ttycom.h>
-#include "termiostypes.h"
+#include <rtems/termiostypes.h>
/*
* FreeBSD does not support a full POSIX termios so we have to help it out
diff --git a/c/src/lib/ChangeLog b/c/src/lib/ChangeLog
index 993fc25425..9459dcf1c0 100644
--- a/c/src/lib/ChangeLog
+++ b/c/src/lib/ChangeLog
@@ -1,4 +1,11 @@
+2000-11-30 Joel Sherrill <joel@OARcorp.com>
+
+ * include/rtems/Makefile.am: Added termiostypes.h.
+ * libc/Makefile.am: Removed termiostypes.h.
+ * libc/termios.c: Changed include of "termiostypes.h" to
+ <rtems/termiostypes.h> since that is an RTEMS specific header file.
+
2000-11-29 Joel Sherrill <joel@OARcorp.com>
* include/sys/ttycom.h: New file -- moved from libnetworking/sys.
diff --git a/c/src/lib/include/rtems/Makefile.am b/c/src/lib/include/rtems/Makefile.am
index 1b54a93c86..e8f8df896c 100644
--- a/c/src/lib/include/rtems/Makefile.am
+++ b/c/src/lib/include/rtems/Makefile.am
@@ -4,7 +4,7 @@
AUTOMAKE_OPTIONS = foreign 1.4
-H_FILES = assoc.h error.h libcsupport.h libio.h libio_.h
+H_FILES = assoc.h error.h libcsupport.h libio.h libio_.h termiostypes.h
noinst_HEADERS = $(H_FILES)
diff --git a/c/src/lib/libc/Makefile.am b/c/src/lib/libc/Makefile.am
index d2bd6be202..717c2da633 100644
--- a/c/src/lib/libc/Makefile.am
+++ b/c/src/lib/libc/Makefile.am
@@ -81,6 +81,6 @@ $(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
DOC_FILES = TODO CASES
EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \
- $(UNIX_C_FILES) termiostypes.h
+ $(UNIX_C_FILES)
include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/lib/libc/termios.c b/c/src/lib/libc/termios.c
index 24ea914278..74583cae2f 100644
--- a/c/src/lib/libc/termios.c
+++ b/c/src/lib/libc/termios.c
@@ -25,7 +25,7 @@
#include <unistd.h>
#include <sys/ttycom.h>
-#include "termiostypes.h"
+#include <rtems/termiostypes.h>
/*
* FreeBSD does not support a full POSIX termios so we have to help it out