Ticket #140: rtems-rc-20020316-2.diff

File rtems-rc-20020316-2.diff, 2.0 KB (added by Ralf Corsepius, on 12/03/06 at 13:31:13)

rtems-rc-20020316-2.diff

  • new file ./c/src/libfs/changes-20020316-2

    - +  
     12002-03-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        Addressing PR 140.
     4        * src/dosfs/config.h.in: Removed.
     5        * src/dosfs/stamp-h2.in: Removed.
     6        * .cvsignore: Add config.h*, stamp-h*.
     7        * configure.ac: Remove AC_SRC_DIR(.../dosfs.h).
     8        Remove AM_CONFIG_HEADER(src/dosfs/config.h).
     9        Remove AM_CONFIG_HEADER(src/imfs/config.h).
     10        Add AM_CONFIG_HEADER(config.h).
     11        * src/dosfs/Makefile.am: INCLUDES = -I../.. .
     12        * src/imfs/Makefile.am: INCLUDES = -I../.. .
     13
  • ./c/src/libfs/.cvsignore

    old new  
    1212install-sh
    1313missing
    1414mkinstalldirs
     15config.h*
     16stamp-h*
  • ./c/src/libfs/configure.ac

    old new  
    55AC_PREREQ(2.52)
    66AC_INIT
    77AC_CONFIG_SRCDIR([src/imfs/imfs.h])
    8 AC_CONFIG_SRCDIR([src/dosfs/dosfs.h])
     8
    99RTEMS_TOP(../../..)
    1010AC_CONFIG_AUX_DIR(../../..)
    1111
     
    2727RTEMS_CANONICALIZE_TOOLS
    2828
    2929AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
    30 AM_CONFIG_HEADER(src/imfs/config.h)
    31 AM_CONFIG_HEADER(src/dosfs/config.h)
     30AM_CONFIG_HEADER(config.h)
    3231
    3332# Explicitly list all Makefiles here
    3433AC_CONFIG_FILES([Makefile
  • ./c/src/libfs/src/dosfs/Makefile.am

    old new  
    88include $(top_srcdir)/../../../automake/compile.am
    99include $(top_srcdir)/../../../automake/lib.am
    1010
    11 INCLUDES = -I.
     11INCLUDES = -I../..
     12
    1213AM_CFLAGS += $(LIBC_DEFINES)
    1314
    1415FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
  • ./c/src/libfs/src/imfs/Makefile.am

    old new  
    44
    55AUTOMAKE_OPTIONS = foreign 1.4
    66
    7 INCLUDES = -I.
     7INCLUDES = -I../..
    88
    99LIBNAME = libimfs
    1010LIB = ${ARCH}/${LIBNAME}.a