e5b44f14fc
By design, LuaLS wants to create a `.luarc.json` in your project root. This file defines important things, like module paths, global symbols, etc. For those of us addicted to Neovim, LuaLS is all about making the most of our nvim configs. Operating on the assumption that everybody likes the same thing we do, this port now supplies a (STRONGLY) recommended luarc in $EXAMPLESDIR, and a pkg-message pointing to it. Also, testing during build phase has been disabled. There are some flaky tests that can lead to failures when the system is under load. Reported by: Dave Marker Approved by: maintainer (Dave Marker) Differential Revision: https://reviews.freebsd.org/D54657
23 lines
634 B
Lua
23 lines
634 B
Lua
--- 3rd/bee.lua/compile/common.lua.orig 2026-01-10 05:26:24 UTC
|
|
+++ 3rd/bee.lua/compile/common.lua
|
|
@@ -210,7 +210,7 @@ lm:source_set "source_bee" {
|
|
}
|
|
},
|
|
freebsd = {
|
|
- sysincludes = "/usr/local/include",
|
|
+ sysincludes = "%LOCALBASE%/include",
|
|
sources = need {
|
|
"bsd",
|
|
"posix",
|
|
@@ -294,8 +294,8 @@ lm:source_set "source_bee" {
|
|
ldflags = "-pthread"
|
|
},
|
|
freebsd = {
|
|
- links = "inotify",
|
|
- linkdirs = "/usr/local/lib",
|
|
+ %LM_INOTIFY_LINK%
|
|
+ linkdirs = "%LOCALBASE%/lib",
|
|
ldflags = "-pthread"
|
|
},
|
|
openbsd = {
|