Repository : ssh://g...@git.haskell.org/process On branch : master Link : http://git.haskell.org/packages/process.git/commitdiff/7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b
>--------------------------------------------------------------- commit 7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b Author: Peter Trommler <ptromm...@acm.org> Date: Tue Sep 24 16:19:40 2013 +0200 Delete spurious comma in configure.ac (#8352) A comma in AC_CHECK_FUNCS prevented setitimer from being detected. Signed-off-by: Austin Seipp <aus...@well-typed.com> >--------------------------------------------------------------- 7c97999ee5bbeb02c04cfd3ff3acc306e6eec92b configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c0b2a14..5f0731d 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_FUNC_FORK # check for specific header (.h) files that we are interested in AC_CHECK_HEADERS([signal.h sys/wait.h fcntl.h]) -AC_CHECK_FUNCS([setitimer, sysconf]) +AC_CHECK_FUNCS([setitimer sysconf]) FP_CHECK_CONSTS([SIG_DFL SIG_IGN]) _______________________________________________ ghc-commits mailing list ghc-commits@haskell.org http://www.haskell.org/mailman/listinfo/ghc-commits