diff options
-rw-r--r-- | acconfig.h | 3 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | mk/config.h.in | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index eee8148d98..8896c0d205 100644 --- a/acconfig.h +++ b/acconfig.h @@ -126,6 +126,9 @@ /* Define to Haskell type for cc_t */ #undef HTYPE_CC_T +/* Define to Haskell type for blkcnt_t */ +#undef HTYPE_BLKCNT_T + /* Define to Haskell type for char */ #undef HTYPE_CHAR diff --git a/configure.in b/configure.in index 8fd81dfe0b..65fed785eb 100644 --- a/configure.in +++ b/configure.in @@ -843,6 +843,7 @@ FPTOOLS_CHECK_HTYPE(uid_t) FPTOOLS_CHECK_HTYPE(cc_t) FPTOOLS_CHECK_HTYPE(speed_t) FPTOOLS_CHECK_HTYPE(tcflag_t) +FPTOOLS_CHECK_HTYPE(blkcnt_t) FPTOOLS_CHECK_HTYPE(nlink_t) FPTOOLS_CHECK_HTYPE(ssize_t) diff --git a/mk/config.h.in b/mk/config.h.in index 7064aff384..219713d3ff 100644 --- a/mk/config.h.in +++ b/mk/config.h.in @@ -118,6 +118,9 @@ /* Define if you have the WinExec function. */ #undef HAVE_WINEXEC +/* Define to Haskell type for blkcnt_t */ +#undef HTYPE_BLKCNT_T + /* Define to Haskell type for cc_t */ #undef HTYPE_CC_T |