Changeset 006fa1ef in rtems


Ignore:
Timestamp:
11/20/03 12:14:50 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3d4d5ee
Parents:
0fa54a0b
Message:

2003-11-20 Ralf Corsepius <corsepiu@…>

  • 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.
Location:
cpukit/libblock
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • cpukit/libblock/ChangeLog

    r0fa54a0b r006fa1ef  
     12003-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
    1122003-09-04      Joel Sherrill <joel@OARcorp.com>
    213
  • cpukit/libblock/Makefile.am

    r0fa54a0b r006fa1ef  
    3030OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
    3131
    32 AM_CFLAGS += $(LIBC_DEFINES)
     32AM_CPPFLAGS += -I$(top_builddir)
     33AM_CPPFLAGS += $(LIBC_DEFINES)
    3334
    3435${ARCH}/%.$(OBJEXT): src/%.c
  • cpukit/libblock/src/ata.c

    r0fa54a0b r006fa1ef  
    1616 *
    1717 */
     18
     19#if HAVE_CONFIG_H
     20#include "config.h"
     21#endif
     22
    1823#include <errno.h>
    1924#include <chain.h>
  • cpukit/libblock/src/bdbuf.c

    r0fa54a0b r006fa1ef  
    1010 * @(#) $Id$
    1111 */
     12
     13#if HAVE_CONFIG_H
     14#include "config.h"
     15#endif
    1216
    1317#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
  • cpukit/libblock/src/blkdev.c

    r0fa54a0b r006fa1ef  
    88 */
    99
     10#if HAVE_CONFIG_H
     11#include "config.h"
     12#endif
     13
    1014#include <string.h>
    1115
  • cpukit/libblock/src/diskdevs.c

    r0fa54a0b r006fa1ef  
    88 */
    99
     10#if HAVE_CONFIG_H
     11#include "config.h"
     12#endif
    1013
    1114#include <rtems.h>
  • cpukit/libblock/src/ide_part_table.c

    r0fa54a0b r006fa1ef  
    1919 *****************************************************************************/
    2020
     21#if HAVE_CONFIG_H
     22#include "config.h"
     23#endif
     24
     25#include <string.h>
     26
    2127#include <rtems/ide_part_table.h>
    22 #include <string.h>
    2328
    2429/*
  • cpukit/libblock/src/ramdisk.c

    r0fa54a0b r006fa1ef  
    66 * @(#) $Id$
    77 */
     8
     9#if HAVE_CONFIG_H
     10#include "config.h"
     11#endif
    812
    913#include <rtems.h>
Note: See TracChangeset for help on using the changeset viewer.