From 39a01079267de5194523178ff23bb24fc62645c0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 16 Nov 2009 11:29:31 -0500 Subject: [PATCH] Add missing include In archive_read_support_format_ar.c we use SIZE_MAX. On some platforms the constant is defined in so we should include it. SVN-Revision: 1659 --- libarchive/archive_read_support_format_ar.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libarchive/archive_read_support_format_ar.c b/libarchive/archive_read_support_format_ar.c index 90fcc23b2..d0cc216cf 100644 --- a/libarchive/archive_read_support_format_ar.c +++ b/libarchive/archive_read_support_format_ar.c @@ -40,6 +40,9 @@ __FBSDID("$FreeBSD: src/lib/libarchive/archive_read_support_format_ar.c,v 1.12 2 #ifdef HAVE_STRING_H #include #endif +#ifdef HAVE_LIMITS_H +#include +#endif #include "archive.h" #include "archive_entry.h" -- 2.47.3