diff options
author | panne <unknown> | 2002-09-07 12:07:53 +0000 |
---|---|---|
committer | panne <unknown> | 2002-09-07 12:07:53 +0000 |
commit | dbffcd49976bdd132a9849da47c2fb500a723bf5 (patch) | |
tree | a53f8d30d2ed322b3403e6eb170a9b7be574ab59 | |
parent | 0716aa8f05cb10804bb3f1ae8f53a838ce24841b (diff) | |
download | haskell-dbffcd49976bdd132a9849da47c2fb500a723bf5.tar.gz |
[project @ 2002-09-07 12:07:53 by panne]
Tentative fix for the recent blkcnt_t trouble
-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 |