diff options
author | Bruno Haible <bruno@clisp.org> | 2007-04-29 12:16:55 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2007-04-29 12:16:55 +0000 |
commit | 87b4ad2944714dce754a392c661e4eb9776e2794 (patch) | |
tree | 38c270be99d9e4cc4cd2ce40f2b8303c53c46173 /m4/fpurge.m4 | |
parent | a7ebfd1caaa58b6a7bc0b1d1510b0255604e804a (diff) | |
download | gnulib-87b4ad2944714dce754a392c661e4eb9776e2794.tar.gz |
Work around fpurge bug on BSD systems.
Diffstat (limited to 'm4/fpurge.m4')
-rw-r--r-- | m4/fpurge.m4 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/m4/fpurge.m4 b/m4/fpurge.m4 index 2de2179696..796b66c6cd 100644 --- a/m4/fpurge.m4 +++ b/m4/fpurge.m4 @@ -1,4 +1,4 @@ -# fpurge.m4 serial 1 +# fpurge.m4 serial 2 dnl Copyright (C) 2007 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -9,8 +9,4 @@ AC_DEFUN([gl_FUNC_FPURGE], AC_CHECK_FUNCS_ONCE([fpurge]) AC_CHECK_FUNCS_ONCE([__fpurge]) AC_CHECK_DECLS([fpurge], , , [#include <stdio.h>]) - if test $ac_cv_func_fpurge = no && test $ac_cv_func___fpurge = no; then - AC_LIBOBJ([fpurge]) - AC_CHECK_FUNCS([fpurge]) - fi ]) |