diff options
author | Jeremy Allison <jra@samba.org> | 2012-04-11 17:10:27 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-04-11 17:11:28 -0700 |
commit | 2216d3f08ae1d09ec10098a55b8a2f9c9fa0a5b2 (patch) | |
tree | 412843430c909397801da1cbc1d4a1cc325b9444 /source3 | |
parent | 2927ca36706bf2e9b2b0458bbb1dfb493ea8e208 (diff) | |
download | samba-2216d3f08ae1d09ec10098a55b8a2f9c9fa0a5b2.tar.gz samba-2216d3f08ae1d09ec10098a55b8a2f9c9fa0a5b2.tar.bz2 samba-2216d3f08ae1d09ec10098a55b8a2f9c9fa0a5b2.zip |
Try and fix autoconf on the build farm. Always include sys/types.h when working out sizeof(blkcnt_t).
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0470a18c1c..7a704d0e92 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2940,6 +2940,7 @@ AC_TRY_RUN([ #include <unistd.h> #endif #include <stdio.h> +#include <sys/types.h> #include <sys/stat.h> #ifndef HAVE_BLKCNT_T typedef long blkcnt_t; @@ -2956,6 +2957,7 @@ AC_TRY_RUN([ #include <unistd.h> #endif #include <stdio.h> +#include <sys/types.h> #include <sys/stat.h> #ifndef HAVE_BLKCNT_T typedef long blkcnt_t; |