aboutsummaryrefslogtreecommitdiff
path: root/MCONFIG.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2000-02-02 16:13:14 +0000
committerTheodore Ts'o <tytso@mit.edu>2000-02-02 16:13:14 +0000
commit73ae2d4a23f04e129cd08e29d9124620ad7b4300 (patch)
tree661b419f6ca60b92b6d96f527223a0fba976b823 /MCONFIG.in
parent41a817eb13690fb6c7569df462fb9d76028ca9df (diff)
downloade2fsprogs-73ae2d4a23f04e129cd08e29d9124620ad7b4300.tar.gz
ChangeLog, configure, MCONFIG.in, configure.in:
MCONFIG.in: Always include src/include in the include path now. This forces us to use our internally provided ext2_fs.h file, for sanity's sake. configure.in: If linux/fs.h isn't found, then add build/include into the include path only, since src/include is now always included. Removed define of HAVE_LINUX_FS_H, since we're not using it any more. Removed i_version vs. i_generation check, since with the included header file it is a permanently known quantity. Removed AC_C_CROSS since it has been merged into AC_PROG_CC in autoconf 2.13.
Diffstat (limited to 'MCONFIG.in')
-rw-r--r--MCONFIG.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/MCONFIG.in b/MCONFIG.in
index 6ce7a5a6..54047997 100644
--- a/MCONFIG.in
+++ b/MCONFIG.in
@@ -30,7 +30,8 @@ BUILD_CC = @BUILD_CC@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
ALL_CFLAGS = $(CPPFLAGS) $(DEFS) $(WFLAGS) $(CFLAGS) $(XTRA_CFLAGS) \
- -I$(top_builddir)/lib -I$(top_srcdir)/lib $(LINUX_INCLUDE)
+ -I$(top_builddir)/lib -I$(top_srcdir)/lib \
+ -I$(top_srcdir)/include $(LINUX_INCLUDE)
LDFLAGS = @LDFLAGS@
ALL_LDFLAGS = $(LDFLAGS)
RM = @RM@