From e2bc5a524599ab5b762b65184ce9f0bd29d4ad52 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 9 Oct 2018 20:45:09 -0700 Subject: [PATCH] construct/Makefile.am: Fix issues with LDFLAGS and LIBS lists. --- construct/Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/construct/Makefile.am b/construct/Makefile.am index 3c1fa7b7e..9df5d1386 100644 --- a/construct/Makefile.am +++ b/construct/Makefile.am @@ -44,9 +44,11 @@ construct_LDFLAGS = \ @ROCKSDB_LDFLAGS@ \ @JS_LDFLAGS@ \ @BOOST_LDFLAGS@ \ - @SSL_CPPFLAGS@ \ - @CRYPTO_CPPFLAGS@ \ + @SSL_LDFLAGS@ \ + @CRYPTO_LDFLAGS@ \ @SODIUM_LDFLAGS@ \ + @MAGIC_LDFLAGS@ \ + @SNAPPY_LDFLAGS@ \ @LZ4_LDFLAGS@ \ @Z_LDFLAGS@ \ ### @@ -56,9 +58,11 @@ construct_LDADD = \ @ROCKSDB_LIBS@ \ @JS_LIBS@ \ @BOOST_LIBS@ \ - @SODIUM_LIBS@ \ @SSL_LIBS@ \ @CRYPTO_LIBS@ \ + @SODIUM_LIBS@ \ + @MAGIC_LIBS@ \ + @SNAPPY_LIBS@ \ @LZ4_LIBS@ \ @Z_LIBS@ \ ###