From fbb22e9e32827af4257e03ff3b473438ad6d0942 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 17 Oct 2017 00:02:27 +0300 Subject: [PATCH] Fix 'package requirements (atomic_ops) were not met' configure error (fix commit 3d34335) * configure.ac [$missing_libatomic_ops] (PKG_CHECK_MODULES): Pass no-op to action-if-not-found parameter (because the default action-if-not-found ends the execution with an error in case of the missing dependency). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d56a020b..cb314a65 100644 --- a/configure.ac +++ b/configure.ac @@ -1008,7 +1008,7 @@ AS_IF([test x"$with_libatomic_ops" != xno -a x"$with_libatomic_ops" != xnone], # autogen.sh (autoreconf); alternatively, comment out the following 3 lines. AS_IF([test x$missing_libatomic_ops = xtrue], [ PKG_CHECK_MODULES([ATOMIC_OPS], [atomic_ops], - [ missing_libatomic_ops=false ]) ]) + [ missing_libatomic_ops=false ], [ [] ]) ]) # Retry with AC_CHECK_HEADER if PKG_CHECK_MODULES failed. AS_IF([test x$missing_libatomic_ops = xtrue], -- 2.40.0