From b0ed65f74b41583cb6eb74a27182e6b6b5870a05 Mon Sep 17 00:00:00 2001 From: "Vadim A. Misbakh-Soloviov" Date: Tue, 22 Aug 2017 13:15:00 +0700 Subject: [PATCH] Makefile: dropping off linking against librt and libdl (compiler takes care of it by itself when needed) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f67ebc2..84eeba0 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ endif INCLUDES = -I$(LUA_INC) DEFINES = -LIBS = -lrt -ldl $(CURL_LIBS) +LIBS = $(CURL_LIBS) COMMONFLAGS = -O2 -g -pipe -fPIC $(OS_FLAGS) $(DBG) LF = $(LIBS) $(LDFLAGS)