BUILD: lua: it miss the '-ldl' directive

The Lua library requires the 'dl' library.
This commit is contained in:
Thierry FOURNIER 2015-03-17 11:14:26 +01:00 committed by Willy Tarreau
parent 5a33ac78ad
commit ecc954703f

View File

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