diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-28 14:53:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-28 14:53:10 +0000 |
commit | 92452ed0a0c66cc20e0f806532af96f8ff6bd9da (patch) | |
tree | 94e3b77ebb20da1bb2ec70421a2de3c94145e4e5 | |
parent | edc1ebe9e74ccbb423a202a0fc2d900d7544eaf2 (diff) | |
download | coreutils-92452ed0a0c66cc20e0f806532af96f8ff6bd9da.tar.xz |
check for __fpending declaration
-rw-r--r-- | m4/fpending.m4 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/m4/fpending.m4 b/m4/fpending.m4 index b512f5d0b..a240f0ab2 100644 --- a/m4/fpending.m4 +++ b/m4/fpending.m4 @@ -12,6 +12,12 @@ AC_DEFUN(jm_FUNC_FPENDING, [ AC_CHECK_HEADERS(stdio_ext.h) AC_REPLACE_FUNCS([__fpending]) + fp_headers=' +# if HAVE_STDIO_EXT_H +# include <stdio_ext.h> +# endif +' + AC_CHECK_DECLS([__fpending], , , $fp_headers) if test $ac_cv_func___fpending = no; then AC_CACHE_CHECK( [how to determine the number of pending output bytes on a stream], |