summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/optman/ChangeLog9
-rw-r--r--c/src/optman/Makefile.am1
-rw-r--r--c/src/optman/configure.ac4
-rw-r--r--c/src/optman/rtems/Makefile.am1
-rw-r--r--c/src/optman/sapi/Makefile.am1
5 files changed, 11 insertions, 5 deletions
diff --git a/c/src/optman/ChangeLog b/c/src/optman/ChangeLog
index 1e75fbd3ec..68331f8b85 100644
--- a/c/src/optman/ChangeLog
+++ b/c/src/optman/ChangeLog
@@ -1,3 +1,12 @@
+2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * configure.ac:
+ AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
+ AM_INIT_AUTOMAKE([no-define foreign 1.6]).
+ * rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * sapi/Makefile.am: Remove AUTOMAKE_OPTIONS.
+
2002-01-06 Joel Sherrill <joel@OARcorp.com>
* .cvsignore: Added aclocal.m4 and configure.
diff --git a/c/src/optman/Makefile.am b/c/src/optman/Makefile.am
index 2587f523b5..545c41ccf0 100644
--- a/c/src/optman/Makefile.am
+++ b/c/src/optman/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
ACLOCAL_AMFLAGS = -I ../../../aclocal
include $(top_srcdir)/../../../automake/multilib.am
diff --git a/c/src/optman/configure.ac b/c/src/optman/configure.ac
index e26e2807ab..41404def19 100644
--- a/c/src/optman/configure.ac
+++ b/c/src/optman/configure.ac
@@ -3,14 +3,14 @@
## $Id$
AC_PREREQ(2.52)
-AC_INIT
+AC_INIT([rtems-c-src-optman],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
AC_CONFIG_SRCDIR([rtems])
RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..)
RTEMS_CANONICAL_TARGET_CPU
-AM_INIT_AUTOMAKE(rtems-c-src-optman,$RTEMS_VERSION,no)
+AM_INIT_AUTOMAKE([no-define foreign 1.6])
AM_MAINTAINER_MODE
RTEMS_ENABLE_MULTILIB
diff --git a/c/src/optman/rtems/Makefile.am b/c/src/optman/rtems/Makefile.am
index a56014e429..1fec765cac 100644
--- a/c/src/optman/rtems/Makefile.am
+++ b/c/src/optman/rtems/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
C_FILES = no-dpmem.c no-event.c no-msg.c no-mp.c no-part.c no-region.c \
no-rtmon.c no-sem.c no-signal.c no-timer.c
diff --git a/c/src/optman/sapi/Makefile.am b/c/src/optman/sapi/Makefile.am
index 2c12d729ec..055706bbe8 100644
--- a/c/src/optman/sapi/Makefile.am
+++ b/c/src/optman/sapi/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
C_FILES = no-ext.c no-io.c
C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)