mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-06 09:35:22 -04: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
|
||||||
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
|
OPTIONS_OBJS += src/hlua.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue