From 71f480591aa3dd80c19b71cfaa1fb3b1a93e4d6f Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 27 Nov 2011 11:09:09 +1100 Subject: [PATCH] Make _FILE_OFFSET_BITS=64 always --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index c906831..a6d63e8 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,9 @@ if test "$SAVE_CFLAGS" = "x"; then CFLAGS="" fi +# We always want 64 bit file offsets +CFLAGS="${CFLAGS} -D_FILE_OFFSET_BITS=64" + AC_CHECK_PROG([HAVE_RPCGEN], [rpcgen], [yes], [no]) if test x$HAVE_RPCGEN != xyes; then AC_MSG_ERROR([Can not find required program]) -- 2.34.1