0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 01:59:33 +02:00

ircd/Makefile: Add missing LZ4 related from configure.

This commit is contained in:
Jason Volk 2018-06-04 14:43:20 -07:00
parent f2acc304c5
commit 6d0161d791

View file

@ -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@ \
###