From dca862bff918446f7e6fffc7f62d75663c73028f Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 17 Jan 2014 03:20:45 -0800 Subject: [PATCH] lib: Add missing config.h #include to crc32_file.c. Without config.h, there is no possibility of large file support. Signed-off-by: Mark Wielaard --- lib/ChangeLog | 4 ++++ lib/crc32_file.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib/ChangeLog b/lib/ChangeLog index 9b8899e2c..44152131a 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2014-01-17 Lei Zhang + + * crc32_file.c: Include config.h. + 2013-12-12 Josh Stone * dynamicsizehash.c (lookup): Add a shortcut around division. diff --git a/lib/crc32_file.c b/lib/crc32_file.c index 9a168f64c..c0b18e91d 100644 --- a/lib/crc32_file.c +++ b/lib/crc32_file.c @@ -26,6 +26,10 @@ the GNU Lesser General Public License along with this program. If not, see . */ +#ifdef HAVE_CONFIG_H +# include +#endif + #include "system.h" #include #include -- 2.47.2