From: Thierry FOURNIER Date: Tue, 17 Mar 2015 10:14:26 +0000 (+0100) Subject: BUILD: lua: it miss the '-ldl' directive X-Git-Tag: v1.6-dev2~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecc9547;p=thirdparty%2Fhaproxy.git BUILD: lua: it miss the '-ldl' directive The Lua library requires the 'dl' library. --- diff --git a/Makefile b/Makefile index a12e4c9fcd..e403239c04 100644 --- a/Makefile +++ b/Makefile @@ -575,7 +575,7 @@ $(error unable to automatically detect the Lua library name, you can enforce its endif endif -OPTIONS_LDFLAGS += $(LUA_LD_FLAGS) -l$(LUA_LIB_NAME) -lm +OPTIONS_LDFLAGS += $(LUA_LD_FLAGS) -l$(LUA_LIB_NAME) -lm -ldl OPTIONS_OBJS += src/hlua.o endif