diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2018-12-31 02:16:40 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-12-31 02:16:40 (GMT) |
commit | 6f9bc72c79c3262e5d0f2c0e96b016477399cfb1 (patch) | |
tree | 62f29dd25098345fd413aa32d66d6baa6f95a7a8 /Misc/NEWS.d/next/Build | |
parent | 30e023256aa1b00d4c783553752fc6f2cc0b9b27 (diff) | |
download | cpython-6f9bc72c79c3262e5d0f2c0e96b016477399cfb1.zip cpython-6f9bc72c79c3262e5d0f2c0e96b016477399cfb1.tar.gz cpython-6f9bc72c79c3262e5d0f2c0e96b016477399cfb1.tar.bz2 |
bpo-35550: Fix incorrect Solaris define guards (GH-11275)
Python source code uses on several places ifdef sun or defined(sun) without the underscores, which is not standard compliant and shouldn't be used.
Defines should check for __sun instead. Reference: http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#Solaris
https://bugs.python.org/issue35550
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r-- | Misc/NEWS.d/next/Build/2018-12-29-10-19-43.bpo-35550.BTuu8e.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2018-12-29-10-19-43.bpo-35550.BTuu8e.rst b/Misc/NEWS.d/next/Build/2018-12-29-10-19-43.bpo-35550.BTuu8e.rst new file mode 100644 index 0000000..8a6b90d --- /dev/null +++ b/Misc/NEWS.d/next/Build/2018-12-29-10-19-43.bpo-35550.BTuu8e.rst @@ -0,0 +1 @@ +Fix incorrect Solaris #ifdef checks to look for __sun && __SVR4 instead of sun when compiling.
\ No newline at end of file |