diff options
author | rbuj <[email protected]> | 2021-04-20 09:02:04 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-04-21 20:48:55 +0200 |
commit | 2d27fec7a7ab9fb7fadf8481812a83336dfe1e27 (patch) | |
tree | e58bfa9b22d1e1e8030d03bdafb1946731e24131 | |
parent | e3ea3965890dcbccc9a7d2958472f0ed46b872fc (diff) | |
download | mate-calc-2d27fec7a7ab9fb7fadf8481812a83336dfe1e27.tar.bz2 mate-calc-2d27fec7a7ab9fb7fadf8481812a83336dfe1e27.tar.xz |
build: abort configuration when development library for MPC is missing
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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 |