Skip to content
Snippets Groups Projects
Commit 07d44ed1 authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

base: Depend upon shlwapi on Windows

As noted in #16466, `System.Environment.getExecutablePath` depends upon
`PathFileExistsW` which is defined by `shlwapi`.

Fixes #16466.
parent f199a843
Branches master
No related tags found
No related merge requests found
......@@ -365,7 +365,8 @@ Library
-- mingw32: Unfortunately required because of a resource leak between
-- mingwex and mingw32. the __math_err symbol is defined in
-- mingw32 which is required by mingwex.
extra-libraries: wsock32, user32, shell32, msvcrt, mingw32, mingwex
-- shlwapi: provides PathFileExistsW
extra-libraries: wsock32, user32, shell32, msvcrt, mingw32, mingwex, shlwapi
exposed-modules:
GHC.IO.Encoding.CodePage.API
GHC.IO.Encoding.CodePage.Table
......
import System.Environment
-- Make sure that getExecutablePath works on Windows. See #16466.
main :: IO ()
main = () <$ getExecutablePath
......@@ -7,3 +7,4 @@ test('T5930', normal, compile_and_run, [''])
test('system001', when(opsys("mingw32"), skip), \
compile_and_run, [''])
test('Timeout001', normal, compile_and_run, [''])
test('T16466', normal, compile_and_run, [''])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment