From 1cc48e865b2faa3f8147c15fcec4c24c46b3d63f Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Fri, 15 Mar 2013 13:15:42 +0000 Subject: tools: Use AC_SYS_LARGEFILE instead of calling getconf(1) getconf is not cross-compile friendly since it reports the features of the host and not the target. There doesn't appear to be a $triplet-getconf. AC_SYS_LARGEFILE arranges for #defines to appear in config.h however Xen's build system expects these to be part of C{PP}FLAGS. Since I'm not confident that everything in Xen includes config.h I instead arrange for the result of running AC_SYS_LARGERFILE to end up in CFLAGS. Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- tools/config.h.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools/config.h.in') diff --git a/tools/config.h.in b/tools/config.h.in index 6d67503de7..08e337a1f5 100644 --- a/tools/config.h.in +++ b/tools/config.h.in @@ -68,3 +68,9 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS + +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES -- cgit v1.2.3