From: Ivan Maidanski Date: Mon, 16 Oct 2017 21:02:27 +0000 (+0300) Subject: Fix 'package requirements (atomic_ops) were not met' configure error X-Git-Tag: v8.0.0~547 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fbb22e9;p=gc 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). --- 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],