commit | ecc954703f937aaaaed614daff0b197ef808ee49 | [log] [tgz] |
---|---|---|
author | Thierry FOURNIER <tfournier@haproxy.com> | Tue Mar 17 11:14:26 2015 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Mar 17 11:44:13 2015 +0100 |
tree | 749a13b14aec49181bd463cad5356201f56aa779 | |
parent | 5a33ac78ad9a74c08d15cba25accc7c64760033a [diff] |
BUILD: lua: it miss the '-ldl' directive The Lua library requires the 'dl' library.
diff --git a/Makefile b/Makefile index a12e4c9..e403239 100644 --- a/Makefile +++ b/Makefile
@@ -575,7 +575,7 @@ 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