From 2d27fec7a7ab9fb7fadf8481812a83336dfe1e27 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 20 Apr 2021 09:02:04 +0200 Subject: build: abort configuration when development library for MPC is missing --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 47365ff..313f226 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,7 @@ GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` AC_SUBST(GLIB_MKENUMS) AC_CHECK_LIB(m, log) -AC_CHECK_LIB(mpc, log) +AC_CHECK_LIB(mpc, log, [], [AC_MSG_ERROR(could not find required development libraries for MPC)], []) dnl ########################################################################### dnl Internationalization -- cgit v1.2.1