mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-11 06:43:42 -05:00
BUILD: lua: it miss the '-ldl' directive
The Lua library requires the 'dl' library.
This commit is contained in:
parent
5a33ac78ad
commit
ecc954703f
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue