Skip to content

Commit a412813

Browse files
committed
build: Make AM_CONDITIONAL([ENABLE_EXTERNAL_SIGNER]) unconditional
This change fixes an error when the value of the "use_boost" variable is equal to "no".
1 parent 9fef209 commit a412813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,8 +1406,6 @@ if test x$use_boost = xyes; then
14061406
)
14071407
fi
14081408

1409-
AM_CONDITIONAL([ENABLE_EXTERNAL_SIGNER], [test "x$use_external_signer" = "xyes"])
1410-
14111409
if test x$suppress_external_warnings != xno; then
14121410
BOOST_CPPFLAGS=SUPPRESS_WARNINGS($BOOST_CPPFLAGS)
14131411
fi
@@ -1420,6 +1418,8 @@ if test x$use_boost = xyes; then
14201418
BOOST_LIBS="$BOOST_LDFLAGS $BOOST_SYSTEM_LIB $BOOST_FILESYSTEM_LIB"
14211419
fi
14221420

1421+
AM_CONDITIONAL([ENABLE_EXTERNAL_SIGNER], [test "x$use_external_signer" = "xyes"])
1422+
14231423
dnl Check for reduced exports
14241424
if test x$use_reduce_exports = xyes; then
14251425
AX_CHECK_COMPILE_FLAG([-fvisibility=hidden],[CXXFLAGS="$CXXFLAGS -fvisibility=hidden"],

0 commit comments

Comments
 (0)