2007-12-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am, configure.ac, posix/Makefile.am, wrapup/Makefile.am:
	Move Ada support code that is untestable from the Standard RTEMS Test
	Suite into its own directory. All code in score, posix, rtems, and
	sapi should be testable by the Standard RTEMS Test Suites. It was
	buried under POSIX before so this should be a clearer location
	anyway.
	* libgnat/.cvsignore, libgnat/Makefile.am, libgnat/ada_intrsupp.c,
	libgnat/adasupp.c: New files.
	* posix/src/ada_intrsupp.c, posix/src/adasupp.c: Removed.
This commit is contained in:
Joel Sherrill
2007-12-12 00:15:54 +00:00
parent b21d4f78ed
commit db27544606
9 changed files with 34 additions and 2 deletions

View File

@@ -1,3 +1,15 @@
2007-12-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, posix/Makefile.am, wrapup/Makefile.am:
Move Ada support code that is untestable from the Standard RTEMS Test
Suite into its own directory. All code in score, posix, rtems, and
sapi should be testable by the Standard RTEMS Test Suites. It was
buried under POSIX before so this should be a clearer location
anyway.
* libgnat/.cvsignore, libgnat/Makefile.am, libgnat/ada_intrsupp.c,
libgnat/adasupp.c: New files.
* posix/src/ada_intrsupp.c, posix/src/adasupp.c: Removed.
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/src/pheapallocatealigned.c, score/src/pheapgetblocksize.c:

View File

@@ -14,6 +14,7 @@ SUBDIRS += libnetworking librpc
SUBDIRS += libi2c
SUBDIRS += libmisc
SUBDIRS += libmd
SUBDIRS += libgnat
SUBDIRS += wrapup
SUBDIRS += zlib

View File

@@ -351,6 +351,7 @@ posix/Makefile
itron/Makefile
libblock/Makefile
libfs/Makefile
libgnat/Makefile
libcsupport/Makefile
libnetworking/Makefile
librpc/Makefile

View File

@@ -0,0 +1,2 @@
Makefile
Makefile.in

View File

@@ -0,0 +1,16 @@
##
## $Id$
##
include $(top_srcdir)/automake/compile.am
EXTRA_DIST=
if LIBPOSIX
noinst_LIBRARIES = libgnat.a
libgnat_a_SOURCES = ada_intrsupp.c adasupp.c
include $(top_srcdir)/automake/local.am
endif

View File

@@ -163,8 +163,7 @@ libposix_a_SOURCES += src/ptimer.c src/ptimer1.c
EXTRA_DIST += src/README.mqueue
libposix_a_SOURCES += src/adasupp.c src/ada_intrsupp.c src/sched.c \
src/sysconf.c src/types.c
libposix_a_SOURCES += src/sched.c src/sysconf.c src/types.c
endif
endif

View File

@@ -19,6 +19,7 @@ TMP_LIBS += ../rtems/librtems.a
if LIBPOSIX
TMP_LIBS += ../posix/libposix.a
TMP_LIBS += ../libgnat/libgnat.a
endif
if LIBITRON