From 088649534e7fd493cab4fce335f50a68108a48a6 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 29 Nov 2015 08:42:56 +1000 Subject: Add large file support CFLAGS to pkgconfig file Large file support is enabled by our configure script as required. If anything linking to libalpm does not also define large file support, there will be differences in the size of off_t which are not caught until runtime. Add the required CFLAGS to the pkg-config file so that users of libalpm know what flags are required. Signed-off-by: Allan McRae --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 359d61bf..60bb8376 100644 --- a/configure.ac +++ b/configure.ac @@ -165,6 +165,15 @@ AC_ARG_ENABLE(git-version, # testing compilation against gpgme). AC_SYS_LARGEFILE +# Record large file flags in pkgconfig file +if test "$enable_largefile" != no; then + if test "$ac_cv_sys_file_offset_bits" != 'no'; then + LFS_CFLAGS="-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" + fi +fi +AC_SUBST(LFS_CFLAGS) + + # Checks for programs. AC_PROG_AWK AC_PROG_CC_C99 -- cgit v1.2.3-24-g4f1b