From f6ca81030435df68a6af9ccd48265fce902ab099 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 2 May 2015 17:05:20 +0100 Subject: [PATCH] configure.ac: Fix detection of the freewheel generator Organization: Straylight/Edgeware From: Mark Wooding This has been broken since the `configure.ac' script was introduced in commit ba6e6b64033b1f9de49feccb5c9cd438354481f7. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2b77ab46..acee1b52 100644 --- a/configure.ac +++ b/configure.ac @@ -136,7 +136,7 @@ AC_CACHE_CHECK([whether the freewheel noise generator will work], [struct itimerval itv = { { 0, 0 }, { 0, 5000 } }; jmp_buf j; setitimer(ITIMER_REAL, &itv, 0); -sigsetjump(j, 1);], +sigsetjmp(j, 1);], [catacomb_cv_freewheel=yes], [catacomb_cv_freewheel=no])]) case $catacomb_cv_freewheel in -- [mdw]