From c8e839cfeb647aca034b9bcd5a321d419dedca1f Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 3 Feb 2014 23:09:23 -0500 Subject: [PATCH] Don't check HAVE_ALARM, which no longer exists. * libguile/scmsigs.c (scm_alarm): Remove check for HAVE_ALARM. Conditionalize only on HAVE_DECL_ALARM. --- libguile/scmsigs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/scmsigs.c b/libguile/scmsigs.c index 701beb56d..97435f49c 100644 --- a/libguile/scmsigs.c +++ b/libguile/scmsigs.c @@ -491,7 +491,7 @@ SCM_DEFINE (scm_restore_signals, "restore-signals", 0, 0, 0, } #undef FUNC_NAME -#if defined HAVE_ALARM && HAVE_DECL_ALARM +#if HAVE_DECL_ALARM SCM_DEFINE (scm_alarm, "alarm", 1, 0, 0, (SCM i), "Set a timer to raise a @code{SIGALRM} signal after the specified\n"