Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 614226e

Browse files
authored
Merge pull request #223 from ellert/support-gnu-hurd
Enable building on GNU/Hurd platforms
2 parents 8fe07ba + d087011 commit 614226e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ version develop
1414
installation possible.
1515
+ Fix a bug where bytes were copied in the wrong order on big endian
1616
architectures. Fixes test failures on s390x.
17+
+ Enable building on GNU/Hurd platforms.
1718

1819
version 1.7.1
1920
-----------------

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
sys.platform.startswith("netbsd"))
2727
SYSTEM_IS_UNIX = (sys.platform.startswith("linux") or
2828
sys.platform.startswith("darwin") or
29+
sys.platform.startswith("gnu") or
2930
SYSTEM_IS_BSD)
3031
SYSTEM_IS_WINDOWS = sys.platform.startswith("win")
3132

0 commit comments

Comments
 (0)