From 38a45a3287c978d4c9d51cb057298bc22bb826dd Mon Sep 17 00:00:00 2001 From: phil Date: Sat, 19 Jan 2019 12:25:58 +0100 Subject: [PATCH] addind -lcrypto to fix "undefined reference to `MD5_*"" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7b0832d..ad7a703 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # CC?= gcc -CFLAGS?= -O -pipe -D_GNU_SOURCE -std=gnu99 -Wall +CFLAGS?= -O -pipe -D_GNU_SOURCE -std=gnu99 -Wall -lcrypto CFLAGS+= $(shell pkg-config --cflags openssl) LIBS?= $(shell pkg-config --libs openssl) -- 2.19.1