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