summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f5a43b8..1d99965 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([dfu-util],[0.9],[http://sourceforge.net/p/dfu-util/tickets/],,[http://dfu-util.sourceforge.net])
+AC_INIT([dfu-util],[0.11],[http://sourceforge.net/p/dfu-util/tickets/],,[http://dfu-util.sourceforge.net])
AC_CONFIG_AUX_DIR(m4)
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS([config.h])
@@ -34,7 +34,10 @@ AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_MEMCMP
-AC_CHECK_FUNCS([getpagesize nanosleep err])
+AC_CHECK_FUNCS([nanosleep err])
+
+# Checks how to do large files
+AC_SYS_LARGEFILE
AC_CONFIG_FILES(Makefile src/Makefile doc/Makefile)
AC_OUTPUT