# HG changeset patch # User Kim Alvefur # Date 1687551624 -7200 # Node ID 395ae8df5a9e10b8a0d6011578d88bb78a87c924 # Parent 783188a44b0a436cec3c10195e8192458d4aa251 squishy: Move bit fallback module out of Prosody namespace This way, prosody.util.bitcompat should pick it up diff -r 783188a44b0a -r 395ae8df5a9e squishy --- a/squishy Fri Jun 23 12:44:24 2023 +0200 +++ b/squishy Fri Jun 23 22:20:24 2023 +0200 @@ -60,9 +60,6 @@ Module "net.http" "net/http.lua" Module "util.x509" "util/x509.lua" - if GetOption "internal-bit-module" then - Module "bit" "libs/bit.lua" - end end ProsodyModules() @@ -136,5 +133,9 @@ VerseModule "verse.component" "component.lua" VerseModule "verse.bosh" "bosh.lua" +if GetOption "internal-bit-module" then + Module "bit" "libs/bit.lua" +end + -- Main verse file Main "init.lua"