Fail-safe fix for windows if the windows color dll doesn't load

correctly.
This commit is contained in:
Bruce Hill 2019-05-02 15:42:00 -07:00
parent 2b0481ed48
commit 8ef787572a
2 changed files with 16 additions and 10 deletions

View File

@ -10,12 +10,16 @@ if NOMSU_PREFIX then
end end
COLOR_ENABLED = true COLOR_ENABLED = true
if clibtype == "dll" then if clibtype == "dll" then
local enable_colors = require('wincolors') local ok, enable_colors = pcall(require, 'wincolors')
local ok, _ = pcall(enable_colors) COLOR_ENABLED = false
if not ok then if ok then
local _
ok, _ = pcall(enable_colors)
if ok then
COLOR_ENABLED = false COLOR_ENABLED = false
end end
os.execute("chcp 65001>nul") end
pcall(os.execute, "chcp 65001>nul")
end end
local List, Dict local List, Dict
do do

View File

@ -13,12 +13,14 @@ export COLOR_ENABLED
COLOR_ENABLED = true COLOR_ENABLED = true
if clibtype == "dll" if clibtype == "dll"
-- Enable colors: -- Enable colors:
enable_colors = require('wincolors') ok,enable_colors = pcall(require, 'wincolors')
COLOR_ENABLED = false
if ok
ok,_ = pcall(enable_colors) ok,_ = pcall(enable_colors)
if not ok if ok
COLOR_ENABLED = false COLOR_ENABLED = false
-- Special hack to enable utf8 for windows console applications: -- Special hack to enable utf8 for windows console applications:
os.execute("chcp 65001>nul") pcall(os.execute,"chcp 65001>nul")
{:List, :Dict} = require 'containers' {:List, :Dict} = require 'containers'
NOMSU_VERSION = List(NOMSU_VERSION) NOMSU_VERSION = List(NOMSU_VERSION)