Software /
code /
prosody
Comparison
util/dependencies.lua @ 12362:0fd58f54d653
Merge config-updates+check-turn from timber
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 Mar 2022 16:33:41 +0000 |
parent | 12331:49739369dcad |
child | 12569:b5d9f1829b15 |
comparison
equal
deleted
inserted
replaced
12320:f0be98bab9dd | 12362:0fd58f54d653 |
---|---|
83 if not ssl then | 83 if not ssl then |
84 missingdep("LuaSec", { | 84 missingdep("LuaSec", { |
85 { "Debian/Ubuntu", "sudo apt install lua-sec" }; | 85 { "Debian/Ubuntu", "sudo apt install lua-sec" }; |
86 { "luarocks", "luarocks install luasec" }; | 86 { "luarocks", "luarocks install luasec" }; |
87 { "Source", "https://github.com/brunoos/luasec" }; | 87 { "Source", "https://github.com/brunoos/luasec" }; |
88 }, "SSL/TLS support will not be available", err); | 88 }, nil, err); |
89 end | 89 end |
90 | 90 |
91 local bit, err = softreq"util.bitcompat"; | 91 local bit, err = softreq"util.bitcompat"; |
92 | 92 |
93 if not bit then | 93 if not bit then |