summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/itron/ChangeLog6
-rw-r--r--cpukit/itron/Makefile.am4
-rw-r--r--cpukit/itron/src/config.h5
-rw-r--r--cpukit/posix/ChangeLog6
-rw-r--r--cpukit/posix/Makefile.am4
-rw-r--r--cpukit/posix/src/config.h5
6 files changed, 16 insertions, 14 deletions
diff --git a/cpukit/itron/ChangeLog b/cpukit/itron/ChangeLog
index 5682c75e05..b327fe3be3 100644
--- a/cpukit/itron/ChangeLog
+++ b/cpukit/itron/ChangeLog
@@ -1,3 +1,9 @@
+2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/config.h: Remove.
+ * Makefile.am: Remove src/config.h
+ AM_CPPFLAGS += -I$(top_builddir).
+
2003-09-04 Joel Sherrill <joel@OARcorp.com>
* include/itron.h, include/itronsys/eventflags.h,
diff --git a/cpukit/itron/Makefile.am b/cpukit/itron/Makefile.am
index e53f6d0748..fd0f29d923 100644
--- a/cpukit/itron/Makefile.am
+++ b/cpukit/itron/Makefile.am
@@ -24,7 +24,6 @@ if HAS_ITRON
## include
noinst_HEADERS =
-noinst_HEADERS += src/config.h
include_HEADERS = include/itron.h
@@ -131,7 +130,8 @@ C_FILES = $(TASK_C_FILES) $(TASKSYNC_C_FILES) $(SEMAPHORE_C_FILES) \
$(TIME_C_FILES)
OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
-AM_CPPFLAGS += -I$(srcdir)/src -D__RTEMS_INSIDE__
+AM_CPPFLAGS += -I$(top_builddir)
+AM_CPPFLAGS += -D__RTEMS_INSIDE__
all-local: $(PREINSTALL_FILES) ${ARCH} ${LIB}
diff --git a/cpukit/itron/src/config.h b/cpukit/itron/src/config.h
deleted file mode 100644
index 09fe652e2c..0000000000
--- a/cpukit/itron/src/config.h
+++ /dev/null
@@ -1,5 +0,0 @@
-/* HACK:
- * Pull-in RTEMS global config-header cpuopts.h as local config.h
- */
-
-#include <rtems/score/cpuopts.h>
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index ef98158bac..06b785d542 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,3 +1,9 @@
+2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * src/config.h: Remove.
+ * Makefile.am: Remove src/config.h
+ AM_CPPFLAGS += -I$(top_builddir).
+
2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/cancelrun.c, src/pthreadexit.c, src/pthreadjoin.c,
diff --git a/cpukit/posix/Makefile.am b/cpukit/posix/Makefile.am
index c0548da48a..44a7a4091d 100644
--- a/cpukit/posix/Makefile.am
+++ b/cpukit/posix/Makefile.am
@@ -26,7 +26,6 @@ PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/posix
# include
noinst_HEADERS = include/devctl.h include/intr.h
-noinst_HEADERS += src/config.h
include_HEADERS = include/sched.h include/aio.h include/mqueue.h include/semaphore.h
@@ -168,7 +167,8 @@ OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
# Add local stuff here using +=
#
-AM_CPPFLAGS += -I$(srcdir)/src -D__RTEMS_INSIDE__
+AM_CPPFLAGS += -I$(top_builddir)
+AM_CPPFLAGS += -D__RTEMS_INSIDE__
all-local: ${ARCH} $(PREINSTALL_FILES) $(LIB)
diff --git a/cpukit/posix/src/config.h b/cpukit/posix/src/config.h
deleted file mode 100644
index 09fe652e2c..0000000000
--- a/cpukit/posix/src/config.h
+++ /dev/null
@@ -1,5 +0,0 @@
-/* HACK:
- * Pull-in RTEMS global config-header cpuopts.h as local config.h
- */
-
-#include <rtems/score/cpuopts.h>