summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-06 20:10:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-01-06 20:10:04 +0000
commit7d9ec2d10cfefcf2d68f51496bfe23253d9d948c (patch)
tree0f359ed7949e7250c486d9f22af1eb8c27288474 /cpukit
parent2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-7d9ec2d10cfefcf2d68f51496bfe23253d9d948c.tar.bz2
2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: AC_CONFIG_SRCDIR([src/pthreads.c]) * src/psignal.c: #include <string.h>.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/ChangeLog5
-rw-r--r--cpukit/posix/configure.ac2
-rw-r--r--cpukit/posix/src/psignal.c1
3 files changed, 7 insertions, 1 deletions
diff --git a/cpukit/posix/ChangeLog b/cpukit/posix/ChangeLog
index df2e4efb1b..f2fffac3b5 100644
--- a/cpukit/posix/ChangeLog
+++ b/cpukit/posix/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * configure.ac: AC_CONFIG_SRCDIR([src/pthreads.c])
+ * src/psignal.c: #include <string.h>.
+
2001-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove optman/Makefile from CONFIG_FILES.
diff --git a/cpukit/posix/configure.ac b/cpukit/posix/configure.ac
index 79a102efac..9b33e4119c 100644
--- a/cpukit/posix/configure.ac
+++ b/cpukit/posix/configure.ac
@@ -4,7 +4,7 @@
AC_PREREQ(2.52)
AC_INIT
-AC_CONFIG_SRCDIR([optman])
+AC_CONFIG_SRCDIR([src/pthread.c])
RTEMS_TOP(../../../..)
AC_CONFIG_AUX_DIR(../../../..)
diff --git a/cpukit/posix/src/psignal.c b/cpukit/posix/src/psignal.c
index f5e4ea17f9..1fac3be1fc 100644
--- a/cpukit/posix/src/psignal.c
+++ b/cpukit/posix/src/psignal.c
@@ -10,6 +10,7 @@
#include <errno.h>
#include <pthread.h>
#include <signal.h>
+#include <string.h> /* memcpy */
#include <rtems/system.h>
#include <rtems/score/isr.h>