summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/exec/posix/ChangeLog11
-rw-r--r--c/src/exec/posix/Makefile.am1
-rw-r--r--c/src/exec/posix/configure.ac4
-rw-r--r--c/src/exec/posix/include/Makefile.am1
-rw-r--r--c/src/exec/posix/inline/Makefile.am1
-rw-r--r--c/src/exec/posix/macros/Makefile.am1
-rw-r--r--c/src/exec/posix/src/Makefile.am1
-rw-r--r--cpukit/posix/ChangeLog11
-rw-r--r--cpukit/posix/Makefile.am1
-rw-r--r--cpukit/posix/configure.ac4
-rw-r--r--cpukit/posix/include/Makefile.am1
-rw-r--r--cpukit/posix/inline/Makefile.am1
-rw-r--r--cpukit/posix/macros/Makefile.am1
-rw-r--r--cpukit/posix/src/Makefile.am1
14 files changed, 26 insertions, 14 deletions
diff --git a/c/src/exec/posix/ChangeLog b/c/src/exec/posix/ChangeLog
index 82b7305b22..97e75ea2de 100644
--- a/c/src/exec/posix/ChangeLog
+++ b/c/src/exec/posix/ChangeLog
@@ -1,3 +1,14 @@
+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]).
+ * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * inline/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * macros/Makefile.am: Remove AUTOMAKE_OPTIONS.
+
2002-03-01 Eric Norum <eric.norum@usask.ca>
* src/pthreadonce.c: Task is not preemptable while running a
diff --git a/c/src/exec/posix/Makefile.am b/c/src/exec/posix/Makefile.am
index 7d2bb3ca04..95a95305e5 100644
--- a/c/src/exec/posix/Makefile.am
+++ b/c/src/exec/posix/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I ../../../../aclocal
SUBDIRS = include inline macros src
diff --git a/c/src/exec/posix/configure.ac b/c/src/exec/posix/configure.ac
index 9b33e4119c..a7c3a806c4 100644
--- a/c/src/exec/posix/configure.ac
+++ b/c/src/exec/posix/configure.ac
@@ -3,14 +3,14 @@
## $Id$
AC_PREREQ(2.52)
-AC_INIT
+AC_INIT([rtems-c-src-exec-posix],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
AC_CONFIG_SRCDIR([src/pthread.c])
RTEMS_TOP(../../../..)
AC_CONFIG_AUX_DIR(../../../..)
RTEMS_CANONICAL_TARGET_CPU
-AM_INIT_AUTOMAKE(rtems-c-src-exec-posix,$RTEMS_VERSION,no)
+AM_INIT_AUTOMAKE([no-define foreign 1.6])
AM_MAINTAINER_MODE
RTEMS_ENABLE_POSIX
diff --git a/c/src/exec/posix/include/Makefile.am b/c/src/exec/posix/include/Makefile.am
index 0b9e026a7a..4fcc061597 100644
--- a/c/src/exec/posix/include/Makefile.am
+++ b/c/src/exec/posix/include/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@
diff --git a/c/src/exec/posix/inline/Makefile.am b/c/src/exec/posix/inline/Makefile.am
index ad102038a2..b603b9be78 100644
--- a/c/src/exec/posix/inline/Makefile.am
+++ b/c/src/exec/posix/inline/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
include_rtems_posixdir = $(includedir)/rtems/posix
diff --git a/c/src/exec/posix/macros/Makefile.am b/c/src/exec/posix/macros/Makefile.am
index 0465f3b814..e4a04340a1 100644
--- a/c/src/exec/posix/macros/Makefile.am
+++ b/c/src/exec/posix/macros/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
include_rtems_posixdir = $(includedir)/rtems/posix
diff --git a/c/src/exec/posix/src/Makefile.am b/c/src/exec/posix/src/Makefile.am
index ea200387d6..00abd9fc01 100644
--- a/c/src/exec/posix/src/Makefile.am
+++ b/c/src/exec/posix/src/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
INCLUDES = -I.
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index 82b7305b22..97e75ea2de 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,3 +1,14 @@
+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]).
+ * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * inline/Makefile.am: Remove AUTOMAKE_OPTIONS.
+ * macros/Makefile.am: Remove AUTOMAKE_OPTIONS.
+
2002-03-01 Eric Norum <eric.norum@usask.ca>
* src/pthreadonce.c: Task is not preemptable while running a
diff --git a/cpukit/posix/Makefile.am b/cpukit/posix/Makefile.am
index 7d2bb3ca04..95a95305e5 100644
--- a/cpukit/posix/Makefile.am
+++ b/cpukit/posix/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I ../../../../aclocal
SUBDIRS = include inline macros src
diff --git a/cpukit/posix/configure.ac b/cpukit/posix/configure.ac
index 9b33e4119c..a7c3a806c4 100644
--- a/cpukit/posix/configure.ac
+++ b/cpukit/posix/configure.ac
@@ -3,14 +3,14 @@
## $Id$
AC_PREREQ(2.52)
-AC_INIT
+AC_INIT([rtems-c-src-exec-posix],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
AC_CONFIG_SRCDIR([src/pthread.c])
RTEMS_TOP(../../../..)
AC_CONFIG_AUX_DIR(../../../..)
RTEMS_CANONICAL_TARGET_CPU
-AM_INIT_AUTOMAKE(rtems-c-src-exec-posix,$RTEMS_VERSION,no)
+AM_INIT_AUTOMAKE([no-define foreign 1.6])
AM_MAINTAINER_MODE
RTEMS_ENABLE_POSIX
diff --git a/cpukit/posix/include/Makefile.am b/cpukit/posix/include/Makefile.am
index 0b9e026a7a..4fcc061597 100644
--- a/cpukit/posix/include/Makefile.am
+++ b/cpukit/posix/include/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@
diff --git a/cpukit/posix/inline/Makefile.am b/cpukit/posix/inline/Makefile.am
index ad102038a2..b603b9be78 100644
--- a/cpukit/posix/inline/Makefile.am
+++ b/cpukit/posix/inline/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
include_rtems_posixdir = $(includedir)/rtems/posix
diff --git a/cpukit/posix/macros/Makefile.am b/cpukit/posix/macros/Makefile.am
index 0465f3b814..e4a04340a1 100644
--- a/cpukit/posix/macros/Makefile.am
+++ b/cpukit/posix/macros/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.5
include_rtems_posixdir = $(includedir)/rtems/posix
diff --git a/cpukit/posix/src/Makefile.am b/cpukit/posix/src/Makefile.am
index ea200387d6..00abd9fc01 100644
--- a/cpukit/posix/src/Makefile.am
+++ b/cpukit/posix/src/Makefile.am
@@ -2,7 +2,6 @@
## $Id$
##
-AUTOMAKE_OPTIONS = foreign 1.4
INCLUDES = -I.