From 58de91d9fef846e75220d196eb959af1d9b89ee1 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Thu, 14 Mar 2024 22:37:46 +0000 Subject: [PATCH] Bugfix: Move common/url to libbitcoin_util.a for now --- src/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 1d7004ac86..58bf752d77 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -681,11 +681,6 @@ libbitcoin_common_a_SOURCES = \ script/standard.cpp \ warnings.cpp \ $(BITCOIN_CORE_H) - -if USE_LIBEVENT -libbitcoin_common_a_CPPFLAGS += $(EVENT_CFLAGS) -libbitcoin_common_a_SOURCES += common/url.cpp -endif # # util # @@ -730,6 +725,11 @@ libbitcoin_util_a_SOURCES = \ util/time.cpp \ util/tokenpipe.cpp \ $(BITCOIN_CORE_H) + +if USE_LIBEVENT +libbitcoin_util_a_CPPFLAGS += $(EVENT_CFLAGS) +libbitcoin_util_a_SOURCES += common/url.cpp +endif # # cli #