Commit c224458e authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD

and DragonFly BSD.  Patch by Nicolas Joly.
parent 8a7e5daa
......@@ -422,6 +422,7 @@ Fredrik Johansson
Gregory K. Johnson
Simon Johnston
Thomas Jollans
Nicolas Joly
Evan Jones
Jeremy Jones
Richard Jones
......
......@@ -85,6 +85,9 @@ Library
Build
-----
- Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD
and DragonFly BSD. Patch by Nicolas Joly.
- Issue #10679: The "idle", "pydoc" and "2to3" scripts are now installed with
a version-specific suffix on "make altinstall".
......
This diff is collapsed.
......@@ -1750,8 +1750,8 @@ then
esac
fi;;
NetBSD*|DragonFly*)
LDSHARED="cc -shared"
LDCXXSHARED="c++ -shared";;
LDSHARED="$(CC) -shared"
LDCXXSHARED="$(CXX) -shared";;
OpenUNIX*|UnixWare*)
if test "$GCC" = "yes" ; then
LDSHARED='$(CC) -shared'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment