forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Static linking cannot work on any platform due to the conflict with luasocket. There is a PR against luasocket that would resolve the situation but it has not been merged in a number of years: lunarmodules/luasocket#346
- Loading branch information
1 parent
0719a71
commit b2046d4
Showing
3 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "luasec", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"maintainers": "Stephen Baker <[email protected]>", | ||
"description": "LuaSec depends on OpenSSL, and integrates with LuaSocket to make it easy to add secure connections to any Lua applications or scripts.", | ||
"homepage": "https://github.com/brunoos/luasec", | ||
"license": "MIT", | ||
"supports": "!(windows & static)", | ||
"supports": "!static", | ||
"dependencies": [ | ||
"lua", | ||
"luasocket", | ||
|