Changeset 006fa1ef in rtems
- Timestamp:
- 11/20/03 12:14:50 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3d4d5ee
- Parents:
- 0fa54a0b
- Location:
- cpukit/libblock
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libblock/ChangeLog
r0fa54a0b r006fa1ef 1 2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: AM_CPPFLAGS += -I$(top_builddir). 4 Use AM_CPPFLAGS instead of AM_CFLAGS. 5 * src/ata.c: Include config.h. 6 * src/bdbuf.c: Ditto. 7 * src/blkdev.c: Ditto. 8 * src/diskdevs.c: Ditto. 9 * src/ide_part_table.c: Ditto. 10 * src/ramdisk.c: Ditto. 11 1 12 2003-09-04 Joel Sherrill <joel@OARcorp.com> 2 13 -
cpukit/libblock/Makefile.am
r0fa54a0b r006fa1ef 30 30 OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT)) 31 31 32 AM_CFLAGS += $(LIBC_DEFINES) 32 AM_CPPFLAGS += -I$(top_builddir) 33 AM_CPPFLAGS += $(LIBC_DEFINES) 33 34 34 35 ${ARCH}/%.$(OBJEXT): src/%.c -
cpukit/libblock/src/ata.c
r0fa54a0b r006fa1ef 16 16 * 17 17 */ 18 19 #if HAVE_CONFIG_H 20 #include "config.h" 21 #endif 22 18 23 #include <errno.h> 19 24 #include <chain.h> -
cpukit/libblock/src/bdbuf.c
r0fa54a0b r006fa1ef 10 10 * @(#) $Id$ 11 11 */ 12 13 #if HAVE_CONFIG_H 14 #include "config.h" 15 #endif 12 16 13 17 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ -
cpukit/libblock/src/blkdev.c
r0fa54a0b r006fa1ef 8 8 */ 9 9 10 #if HAVE_CONFIG_H 11 #include "config.h" 12 #endif 13 10 14 #include <string.h> 11 15 -
cpukit/libblock/src/diskdevs.c
r0fa54a0b r006fa1ef 8 8 */ 9 9 10 #if HAVE_CONFIG_H 11 #include "config.h" 12 #endif 10 13 11 14 #include <rtems.h> -
cpukit/libblock/src/ide_part_table.c
r0fa54a0b r006fa1ef 19 19 *****************************************************************************/ 20 20 21 #if HAVE_CONFIG_H 22 #include "config.h" 23 #endif 24 25 #include <string.h> 26 21 27 #include <rtems/ide_part_table.h> 22 #include <string.h>23 28 24 29 /* -
cpukit/libblock/src/ramdisk.c
r0fa54a0b r006fa1ef 6 6 * @(#) $Id$ 7 7 */ 8 9 #if HAVE_CONFIG_H 10 #include "config.h" 11 #endif 8 12 9 13 #include <rtems.h>
Note: See TracChangeset
for help on using the changeset viewer.