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

and DragonFly BSD.  Patch by Nicolas Joly.
This commit is contained in:
Antoine Pitrou 2011-01-02 19:34:03 +00:00
parent 8a7e5daab2
commit c224458ef6
4 changed files with 264 additions and 280 deletions

View File

@ -422,6 +422,7 @@ Fredrik Johansson
Gregory K. Johnson
Simon Johnston
Thomas Jollans
Nicolas Joly
Evan Jones
Jeremy Jones
Richard Jones

View File

@ -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".

536
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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'