forked from Imagelibrary/rtems
2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Addressing PR 140. * src/dosfs/config.h.in: Removed. * src/dosfs/stamp-h2.in: Removed. * .cvsignore: Add config.h*, stamp-h*. * configure.ac: Remove AC_SRC_DIR(.../dosfs.h). Remove AM_CONFIG_HEADER(src/dosfs/config.h). Remove AM_CONFIG_HEADER(src/imfs/config.h). Add AM_CONFIG_HEADER(config.h). * src/dosfs/Makefile.am: INCLUDES = -I../.. . * src/imfs/Makefile.am: INCLUDES = -I../.. .
This commit is contained in:
@@ -12,3 +12,5 @@ depcomp
|
|||||||
install-sh
|
install-sh
|
||||||
missing
|
missing
|
||||||
mkinstalldirs
|
mkinstalldirs
|
||||||
|
config.h*
|
||||||
|
stamp-h*
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
|
2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
Addressing PR 140.
|
||||||
|
* src/dosfs/config.h.in: Removed.
|
||||||
|
* src/dosfs/stamp-h2.in: Removed.
|
||||||
|
* .cvsignore: Add config.h*, stamp-h*.
|
||||||
|
* configure.ac: Remove AC_SRC_DIR(.../dosfs.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/dosfs/config.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/imfs/config.h).
|
||||||
|
Add AM_CONFIG_HEADER(config.h).
|
||||||
|
* src/dosfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
* src/imfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
|
||||||
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
Reported and tracked as PR130.
|
Reported and tracked as PR130.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
||||||
AC_CONFIG_SRCDIR([src/dosfs/dosfs.h])
|
|
||||||
RTEMS_TOP(../../..)
|
RTEMS_TOP(../../..)
|
||||||
AC_CONFIG_AUX_DIR(../../..)
|
AC_CONFIG_AUX_DIR(../../..)
|
||||||
|
|
||||||
@@ -27,8 +27,7 @@ RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
|||||||
RTEMS_CANONICALIZE_TOOLS
|
RTEMS_CANONICALIZE_TOOLS
|
||||||
|
|
||||||
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
||||||
AM_CONFIG_HEADER(src/imfs/config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AM_CONFIG_HEADER(src/dosfs/config.h)
|
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|||||||
include $(top_srcdir)/../../../automake/compile.am
|
include $(top_srcdir)/../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../automake/lib.am
|
include $(top_srcdir)/../../../automake/lib.am
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
AM_CFLAGS += $(LIBC_DEFINES)
|
AM_CFLAGS += $(LIBC_DEFINES)
|
||||||
|
|
||||||
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
LIBNAME = libimfs
|
LIBNAME = libimfs
|
||||||
LIB = ${ARCH}/${LIBNAME}.a
|
LIB = ${ARCH}/${LIBNAME}.a
|
||||||
|
|||||||
@@ -12,3 +12,5 @@ depcomp
|
|||||||
install-sh
|
install-sh
|
||||||
missing
|
missing
|
||||||
mkinstalldirs
|
mkinstalldirs
|
||||||
|
config.h*
|
||||||
|
stamp-h*
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
|
2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
Addressing PR 140.
|
||||||
|
* src/dosfs/config.h.in: Removed.
|
||||||
|
* src/dosfs/stamp-h2.in: Removed.
|
||||||
|
* .cvsignore: Add config.h*, stamp-h*.
|
||||||
|
* configure.ac: Remove AC_SRC_DIR(.../dosfs.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/dosfs/config.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/imfs/config.h).
|
||||||
|
Add AM_CONFIG_HEADER(config.h).
|
||||||
|
* src/dosfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
* src/imfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
|
||||||
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
Reported and tracked as PR130.
|
Reported and tracked as PR130.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
||||||
AC_CONFIG_SRCDIR([src/dosfs/dosfs.h])
|
|
||||||
RTEMS_TOP(../../..)
|
RTEMS_TOP(../../..)
|
||||||
AC_CONFIG_AUX_DIR(../../..)
|
AC_CONFIG_AUX_DIR(../../..)
|
||||||
|
|
||||||
@@ -27,8 +27,7 @@ RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
|||||||
RTEMS_CANONICALIZE_TOOLS
|
RTEMS_CANONICALIZE_TOOLS
|
||||||
|
|
||||||
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
||||||
AM_CONFIG_HEADER(src/imfs/config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AM_CONFIG_HEADER(src/dosfs/config.h)
|
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|||||||
include $(top_srcdir)/../../../automake/compile.am
|
include $(top_srcdir)/../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../automake/lib.am
|
include $(top_srcdir)/../../../automake/lib.am
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
AM_CFLAGS += $(LIBC_DEFINES)
|
AM_CFLAGS += $(LIBC_DEFINES)
|
||||||
|
|
||||||
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
LIBNAME = libimfs
|
LIBNAME = libimfs
|
||||||
LIB = ${ARCH}/${LIBNAME}.a
|
LIB = ${ARCH}/${LIBNAME}.a
|
||||||
|
|||||||
@@ -12,3 +12,5 @@ depcomp
|
|||||||
install-sh
|
install-sh
|
||||||
missing
|
missing
|
||||||
mkinstalldirs
|
mkinstalldirs
|
||||||
|
config.h*
|
||||||
|
stamp-h*
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
|
2002-03-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
Addressing PR 140.
|
||||||
|
* src/dosfs/config.h.in: Removed.
|
||||||
|
* src/dosfs/stamp-h2.in: Removed.
|
||||||
|
* .cvsignore: Add config.h*, stamp-h*.
|
||||||
|
* configure.ac: Remove AC_SRC_DIR(.../dosfs.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/dosfs/config.h).
|
||||||
|
Remove AM_CONFIG_HEADER(src/imfs/config.h).
|
||||||
|
Add AM_CONFIG_HEADER(config.h).
|
||||||
|
* src/dosfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
* src/imfs/Makefile.am: INCLUDES = -I../.. .
|
||||||
|
|
||||||
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-03-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
Reported and tracked as PR130.
|
Reported and tracked as PR130.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
AC_CONFIG_SRCDIR([src/imfs/imfs.h])
|
||||||
AC_CONFIG_SRCDIR([src/dosfs/dosfs.h])
|
|
||||||
RTEMS_TOP(../../..)
|
RTEMS_TOP(../../..)
|
||||||
AC_CONFIG_AUX_DIR(../../..)
|
AC_CONFIG_AUX_DIR(../../..)
|
||||||
|
|
||||||
@@ -27,8 +27,7 @@ RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
|||||||
RTEMS_CANONICALIZE_TOOLS
|
RTEMS_CANONICALIZE_TOOLS
|
||||||
|
|
||||||
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
AM_CONDITIONAL(UNIX,test x"$RTEMS_CPU" = x"unix")
|
||||||
AM_CONFIG_HEADER(src/imfs/config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AM_CONFIG_HEADER(src/dosfs/config.h)
|
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
|
|||||||
@@ -8,7 +8,8 @@ include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|||||||
include $(top_srcdir)/../../../automake/compile.am
|
include $(top_srcdir)/../../../automake/compile.am
|
||||||
include $(top_srcdir)/../../../automake/lib.am
|
include $(top_srcdir)/../../../automake/lib.am
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
AM_CFLAGS += $(LIBC_DEFINES)
|
AM_CFLAGS += $(LIBC_DEFINES)
|
||||||
|
|
||||||
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
FATFS_C_FILES = fat.c fat_fat_operations.c fat_file.c
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign 1.4
|
AUTOMAKE_OPTIONS = foreign 1.4
|
||||||
|
|
||||||
INCLUDES = -I.
|
INCLUDES = -I../..
|
||||||
|
|
||||||
LIBNAME = libimfs
|
LIBNAME = libimfs
|
||||||
LIB = ${ARCH}/${LIBNAME}.a
|
LIB = ${ARCH}/${LIBNAME}.a
|
||||||
|
|||||||
Reference in New Issue
Block a user