Fixes for dragonflybsd
This commit is contained in:
parent
800e13009f
commit
0b76ae3cb6
5
deps/lua/Makefile
vendored
5
deps/lua/Makefile
vendored
@ -26,7 +26,7 @@ MYOBJS=
|
|||||||
|
|
||||||
# == END OF USER SETTINGS -- NO NEED TO CHANGE ANYTHING BELOW THIS LINE =======
|
# == END OF USER SETTINGS -- NO NEED TO CHANGE ANYTHING BELOW THIS LINE =======
|
||||||
|
|
||||||
PLATS= aix bsd c89 freebsd generic linux macosx mingw posix solaris
|
PLATS= aix bsd c89 freebsd generic linux macosx mingw posix solaris dragonfly
|
||||||
|
|
||||||
LUA_A= liblua.a
|
LUA_A= liblua.a
|
||||||
CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
|
CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
|
||||||
@ -104,6 +104,9 @@ c89:
|
|||||||
freebsd:
|
freebsd:
|
||||||
$(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX -DLUA_USE_READLINE -I/usr/include/edit" SYSLIBS="-Wl,-E -ledit" CC="cc"
|
$(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX -DLUA_USE_READLINE -I/usr/include/edit" SYSLIBS="-Wl,-E -ledit" CC="cc"
|
||||||
|
|
||||||
|
dragonfly:
|
||||||
|
$(MAKE) $(ALL) SYSCFLAGS="-DLUA_USE_LINUX -DLUA_USE_READLINE -I/usr/local/include" SYSLIBS="-Wl,-E -ledit" CC="cc"
|
||||||
|
|
||||||
generic: $(ALL)
|
generic: $(ALL)
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
|
10
src/GNUMakefile.dragonfly
Normal file
10
src/GNUMakefile.dragonfly
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
CC:= cc
|
||||||
|
CFLAGS:= -std=gnu99 -I/usr/local/include
|
||||||
|
LIBS:= -L/usr/local/lib -lsqlite3 -lutil -lm -lssl -lcrypto -lssh -liconv -lmosquitto
|
||||||
|
|
||||||
|
LIBTOOLIZE:= libtoolize
|
||||||
|
|
||||||
|
DEPS_LUA_TARGET:= dragonfly
|
||||||
|
DEPS_JAMLIB_MAKEFILE:= Makefile.linux
|
||||||
|
|
||||||
|
include GNUmakefile.common
|
Reference in New Issue
Block a user