From: Mark Wooding Date: Sat, 2 May 2015 16:05:20 +0000 (+0100) Subject: configure.ac: Fix detection of the freewheel generator X-Git-Tag: 2.2.0~8 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/catacomb/commitdiff_plain/f6ca81030435df68a6af9ccd48265fce902ab099?ds=inline configure.ac: Fix detection of the freewheel generator This has been broken since the `configure.ac' script was introduced in commit ba6e6b64033b1f9de49feccb5c9cd438354481f7. --- 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