From 6d0161d791f742c7e41f2f62d5accf02911a3c69 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Mon, 4 Jun 2018 14:43:20 -0700 Subject: [PATCH] ircd/Makefile: Add missing LZ4 related from configure. --- ircd/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ircd/Makefile.am b/ircd/Makefile.am index 88b1cfa32..c721f0580 100644 --- a/ircd/Makefile.am +++ b/ircd/Makefile.am @@ -13,6 +13,7 @@ AM_CPPFLAGS = \ @BOOST_CPPFLAGS@ \ @SODIUM_CPPFLAGS@ \ @MAGIC_CPPFLAGS@ \ + @LZ4_CPPFLAGS@ \ @Z_CPPFLAGS@ \ -include ircd/ircd.h \ ### @@ -53,6 +54,7 @@ libircd_la_LDFLAGS = \ @BOOST_LDFLAGS@ \ @SODIUM_LDFLAGS@ \ @MAGIC_LDFLAGS@ \ + @LZ4_LDFLAGS@ \ @Z_LDFLAGS@ \ ### @@ -64,6 +66,7 @@ libircd_la_LIBADD = \ @MAGIC_LIBS@ \ -lcrypto \ -lssl \ + @LZ4_LIBS@ \ @Z_LIBS@ \ ###