Fix autoconf issues. Fix ppc64 build. OBS-URL: https://build.opensuse.org/request/show/201119 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc?expand=0&rev=142
27 lines
771 B
Diff
27 lines
771 B
Diff
From 8cf720ec511d22edb5f545b5b9847358533000d2 Mon Sep 17 00:00:00 2001
|
|
From: Peter Trommler <ptrommler@acm.org>
|
|
Date: Tue, 24 Sep 2013 16:19:40 +0200
|
|
Subject: [PATCH] Delete spurious comma in configure.ac
|
|
|
|
A comma in AC_CHECK_FUNCS prevented setitimer from being detected.
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index c0b2a14..5f0731d 100644
|
|
--- a/libraries/process/configure.ac
|
|
+++ b/libraries/process/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])
|
|
|
|
--
|
|
1.7.10.4
|
|
|