diff options
Diffstat (limited to 'testing/nix/libboost_context-mt.patch')
-rw-r--r-- | testing/nix/libboost_context-mt.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/nix/libboost_context-mt.patch b/testing/nix/libboost_context-mt.patch new file mode 100644 index 0000000000..02326b2e1e --- /dev/null +++ b/testing/nix/libboost_context-mt.patch @@ -0,0 +1,14 @@ +We don't have libboost_context.so, just libboost_context-mt.so (-mt stands +for multithreading). + +--- a/src/libutil/local.mk ++++ b/src/libutil/local.mk +@@ -6,7 +6,7 @@ + + libutil_SOURCES := $(wildcard $(d)/*.cc) + +-libutil_LDFLAGS = $(LIBLZMA_LIBS) -lbz2 -pthread $(OPENSSL_LIBS) $(LIBBROTLI_LIBS) -lboost_context ++libutil_LDFLAGS = $(LIBLZMA_LIBS) -lbz2 -pthread $(OPENSSL_LIBS) $(LIBBROTLI_LIBS) -lboost_context-mt + + libutil_LIBS = libformat + |