SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,20 @@
Index: meson.build
--- meson.build.orig
+++ meson.build
@@ -1135,7 +1135,7 @@ endif
## Lua
-lua = find_program('luajit', required: get_option('lua'))
+lua = find_program('luajit${LUAJIT_V}', required: get_option('lua'))
have_lua = get_option('lua').enabled() or (lua.found() and get_option('lua').auto())
if not lua.found() and have_lua
lua_warning = '''
@@ -1483,6 +1483,7 @@ conf.set('NO_FD_SET',
not platform_windows
and not cc.compiles('''
#include <sys/types.h>
+ #include <sys/select.h>
int main() { fd_set readMask, writeMask; return 0; }
''')
)