File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Changelog
9
9
10
10
version 0.3.0-dev
11
11
-----------------
12
+ + Enabled installation on BSD
12
13
+ Update embedded zlib-ng version to 2.1.2. This comes with some speed
13
14
improvements and changes with regards to the compression levels. For full
14
15
details checkout the `zlib-ng 2.1.2 release notes
@@ -25,4 +26,4 @@ version 0.1.0
25
26
+ Add a fully featured gzip application in python m zlib_ng.gzip_ng.
26
27
+ Port Cpython's gzip module to use zlib-ng.
27
28
+ Port CPython's zlib module to use zlib-ng.
28
- + Use zlib-ng version 2.0.6 as included statically linked version.
29
+ + Use zlib-ng version 2.0.6 as included statically linked version.
Original file line number Diff line number Diff line change 19
19
ZLIB_NG_SOURCE = os .path .join ("src" , "zlib_ng" , "zlib-ng" )
20
20
21
21
SYSTEM_IS_UNIX = (sys .platform .startswith ("linux" ) or
22
- sys .platform .startswith ("darwin" ))
22
+ sys .platform .startswith ("darwin" ) or
23
+ 'bsd' in sys .platform )
23
24
SYSTEM_IS_WINDOWS = sys .platform .startswith ("win" )
24
25
25
26
# Since pip builds in a temp directory by default, setting a fixed file in
You can’t perform that action at this time.
0 commit comments