File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
bug-reports : https://github.com/haskell/zlib/issues
11
11
category : Codec
12
12
synopsis : Compression and decompression in the gzip and zlib formats
13
- description : This package provides a pure interface for compressing and
14
- decompressing streams of data represented as lazy
13
+ description : This package provides a pure interface for compressing and
14
+ decompressing streams of data represented as lazy
15
15
'ByteString's. It uses the
16
16
<https://en.wikipedia.org/wiki/Zlib zlib C library >
17
17
so it has high performance. It supports the \"zlib\",
@@ -76,12 +76,12 @@ library
76
76
ghc-options : -Wall -fwarn-tabs
77
77
if flag(non-blocking-ffi)
78
78
cpp-options : -DNON_BLOCKING_FFI
79
- if flag(pkg-config)
79
+ if flag(pkg-config) && !impl(ghcjs) && !os(ghcjs)
80
80
-- NB: pkg-config is available on windows as well when using msys2
81
81
pkgconfig-depends : zlib
82
82
else
83
83
-- don't use pkg-config
84
- if !os(windows)
84
+ if !os(windows) && !impl(ghcjs) && !os(ghcjs)
85
85
-- Normally we use the the standard system zlib.
86
86
extra-libraries : z
87
87
else
You can’t perform that action at this time.
0 commit comments