summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-12 23:40:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-12 23:40:26 +0000
commitdb9d7fc9946f233292c2c85f4f3eb90bda55ccf1 (patch)
treee0526d5df136422e187b07ff3f92fa4eef07db70
parentc9207fc53272d13db8ff65d33ddd2a045274975f (diff)
2004-01-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 548/rtems * Makefile.am: Add src/envlock.c.
-rw-r--r--cpukit/libcsupport/ChangeLog5
-rw-r--r--cpukit/libcsupport/Makefile.am6
2 files changed, 9 insertions, 2 deletions
diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog
index 640f339a68..5d0bab0625 100644
--- a/cpukit/libcsupport/ChangeLog
+++ b/cpukit/libcsupport/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ PR 548/rtems
+ * Makefile.am: Add src/envlock.c.
+
2003-11-26 Joel Sherrill <joel@OARcorp.com>
PR 524/filesystem
diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am
index 8f57196071..c6a18fe1a8 100644
--- a/cpukit/libcsupport/Makefile.am
+++ b/cpukit/libcsupport/Makefile.am
@@ -12,8 +12,9 @@ include_HEADERS = include/chain.h include/console.h include/clockdrv.h \
include/iosupp.h include/ringbuf.h include/rtc.h \
include/spurious.h include/timerdrv.h include/vmeintr.h
+LIBC_HFILES =
if NEED_STDINT_H
-LIBC_HFILES = include/stdint.h
+LIBC_HFILES += include/stdint.h
endif
if NEED_INTTYPES_H
LIBC_HFILES += include/inttypes.h
@@ -154,7 +155,8 @@ UNIX_C_FILES = $(UNIX_LIBC_C_FILES)
EMBEDDED_C_FILES = $(LIBC_GLUE_C_FILES) $(PASSWORD_GROUP_C_FILES) \
$(TERMINAL_IDENTIFICATION_C_FILES) $(SYSTEM_CALL_C_FILES) \
- $(DIRECTORY_SCAN_C_FILES) $(ID_C_FILES)
+ $(DIRECTORY_SCAN_C_FILES) $(ID_C_FILES) \
+ src/envlock.c
if UNIX
C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)