From: Jeremy Allison Date: Thu, 12 Apr 2012 00:10:27 +0000 (-0700) Subject: Try and fix autoconf on the build farm. Always include sys/types.h when working out... X-Git-Tag: ldb-1.1.6~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2216d3f08ae1d09ec10098a55b8a2f9c9fa0a5b2;p=thirdparty%2Fsamba.git Try and fix autoconf on the build farm. Always include sys/types.h when working out sizeof(blkcnt_t). --- diff --git a/source3/configure.in b/source3/configure.in index 0470a18c1c0..7a704d0e925 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2940,6 +2940,7 @@ AC_TRY_RUN([ #include #endif #include +#include #include #ifndef HAVE_BLKCNT_T typedef long blkcnt_t; @@ -2956,6 +2957,7 @@ AC_TRY_RUN([ #include #endif #include +#include #include #ifndef HAVE_BLKCNT_T typedef long blkcnt_t;