updated for version 7.2.413
Problem:    Large file support is incorrect.
Solution:   Add AC_SYS_LARGEFILE to configure. (James Vega)
diff --git a/src/auto/configure b/src/auto/configure
index d8d8010..d3921e2 100755
--- a/src/auto/configure
+++ b/src/auto/configure
Binary files differ
diff --git a/src/config.h.in b/src/config.h.in
index 8fc8539..e05d59e 100644
--- a/src/config.h.in
+++ b/src/config.h.in
@@ -196,6 +196,11 @@
 #undef HAVE_UTIME
 #undef HAVE_BIND_TEXTDOMAIN_CODESET
 
+/* Define, if needed, for accessing large files. */
+#undef _LARGE_FILES
+#undef _FILE_OFFSET_BITS
+#undef _LARGEFILE_SOURCE
+
 /* Define if you do not have utime(), but do have the utimes() function. */
 #undef HAVE_UTIMES
 
diff --git a/src/configure.in b/src/configure.in
index b7ebe44..ae10bcf 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -2669,6 +2669,10 @@
 	usleep utime utimes)
 AC_FUNC_FSEEKO
 
+dnl define _LARGE_FILES, _FILE_OFFSET_BITS and _LARGEFILE_SOURCE when
+dnl appropriate, so that off_t is 64 bits when needed.
+AC_SYS_LARGEFILE
+
 dnl fstatfs() can take 2 to 4 arguments, try to use st_blksize if possible
 AC_MSG_CHECKING(for st_blksize)
 AC_TRY_COMPILE(
diff --git a/src/version.c b/src/version.c
index 1f7bb38..3b5003a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -682,6 +682,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    413,
+/**/
     412,
 /**/
     411,