diff options
author | Theodore Ts'o <tytso@mit.edu> | 2006-04-09 08:41:55 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2006-04-09 08:41:55 -0400 |
commit | 4ea7ea007bb227727ee1d4dca997c4f5b21d3a30 (patch) | |
tree | a984da943ed78f0b99fa22834495255619f8a61e /configure.in | |
parent | cef2ac104d45c351344cd10ac1419ad5f6422d8b (diff) | |
download | e2fsprogs-4ea7ea007bb227727ee1d4dca997c4f5b21d3a30.tar.gz |
Fix asm_types.h type conflicts
This caused FTBFS bugs on AMD64 platforms, since it uses a different
64-bit type when compared with IA64, so we need to make our
autoconfiguration system more intelligent.
Addresses Debian Bugs: #360661, #360317
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 744301c9..d26ca695 100644 --- a/configure.in +++ b/configure.in @@ -620,6 +620,9 @@ AC_SUBST(SIZEOF_INT) AC_SUBST(SIZEOF_LONG) AC_SUBST(SIZEOF_LONG_LONG) AC_C_BIGENDIAN +/bin/sh $ac_aux_dir/parse-types.sh +ASM_TYPES_HEADER=./asm_types.h +AC_SUBST_FILE(ASM_TYPES_HEADER) dnl dnl See if we have inttypes.h and if intptr_t is defined dnl @@ -840,7 +843,8 @@ test -d include/linux || mkdir include/linux test -d include/asm || mkdir include/asm for i in MCONFIG Makefile e2fsprogs.spec \ util/Makefile util/subst.conf util/gen-tarball \ - lib/et/Makefile lib/ss/Makefile lib/ext2fs/Makefile lib/e2p/Makefile \ + lib/et/Makefile lib/ss/Makefile lib/e2p/Makefile \ + lib/ext2fs/Makefile lib/ext2fs/ext2_types.h \ lib/uuid/Makefile lib/uuid/uuid_types.h \ lib/blkid/Makefile lib/blkid/blkid_types.h \ lib/ss/ss.pc lib/uuid/uuid.pc lib/et/com_err.pc \ |