From: Mike Gerwitz Date: Thu, 3 Dec 2015 02:51:41 +0000 (-0500) Subject: Fail configure when GUILE_PROGS cannot be found X-Git-Tag: v0.1.0~25 X-Git-Url: https://jxself.org/git/?p=8sync.git;a=commitdiff_plain;h=26f5d8d8a986138bb8072cc6f266c15e9b8711b7 Fail configure when GUILE_PROGS cannot be found Available in $prefix/share/aclocal/guile.m4 --- diff --git a/configure.ac b/configure.ac index 301321f..6a4ff01 100644 --- a/configure.ac +++ b/configure.ac @@ -4,6 +4,10 @@ PKG_CHECK_MODULES([GUILE], [guile-2.0]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +m4_ifdef([GUILE_PROGS], + [], + [AC_ERROR(could not locate guile aclocal macros)]) + GUILE_PROGS AC_CONFIG_FILES([Makefile])