2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
	Use AM_CPPFLAGS instead of AM_CFLAGS.
	* src/ata.c: Include config.h.
	* src/bdbuf.c: Ditto.
	* src/blkdev.c: Ditto.
	* src/diskdevs.c: Ditto.
	* src/ide_part_table.c: Ditto.
	* src/ramdisk.c: Ditto.
This commit is contained in:
Ralf Corsepius
2003-11-20 12:14:50 +00:00
parent 0fa54a0be5
commit 006fa1ef77
8 changed files with 39 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
Use AM_CPPFLAGS instead of AM_CFLAGS.
* src/ata.c: Include config.h.
* src/bdbuf.c: Ditto.
* src/blkdev.c: Ditto.
* src/diskdevs.c: Ditto.
* src/ide_part_table.c: Ditto.
* src/ramdisk.c: Ditto.
2003-09-04 Joel Sherrill <joel@OARcorp.com>
* include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: URL

View File

@@ -29,7 +29,8 @@ C_FILES = src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c\
OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
AM_CFLAGS += $(LIBC_DEFINES)
AM_CPPFLAGS += -I$(top_builddir)
AM_CPPFLAGS += $(LIBC_DEFINES)
${ARCH}/%.$(OBJEXT): src/%.c
${COMPILE} -o $@ -c $<

View File

@@ -15,6 +15,11 @@
* $Id$
*
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <chain.h>
#include <assert.h>

View File

@@ -10,6 +10,10 @@
* @(#) $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
#include <rtems.h>
#include <limits.h>

View File

@@ -7,6 +7,10 @@
* @(#) $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include <rtems.h>

View File

@@ -7,6 +7,9 @@
* @(#) $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>

View File

@@ -18,9 +18,14 @@
*
*****************************************************************************/
#include <rtems/ide_part_table.h>
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include <rtems/ide_part_table.h>
/*
* get_sector --
* gets sector from the disk

View File

@@ -6,6 +6,10 @@
* @(#) $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/libio.h>
#include <errno.h>