Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD
and DragonFly BSD. Patch by Nicolas Joly.
This commit is contained in:
parent
8a7e5daab2
commit
c224458ef6
|
@ -422,6 +422,7 @@ Fredrik Johansson
|
||||||
Gregory K. Johnson
|
Gregory K. Johnson
|
||||||
Simon Johnston
|
Simon Johnston
|
||||||
Thomas Jollans
|
Thomas Jollans
|
||||||
|
Nicolas Joly
|
||||||
Evan Jones
|
Evan Jones
|
||||||
Jeremy Jones
|
Jeremy Jones
|
||||||
Richard Jones
|
Richard Jones
|
||||||
|
|
|
@ -85,6 +85,9 @@ Library
|
||||||
Build
|
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
|
- Issue #10679: The "idle", "pydoc" and "2to3" scripts are now installed with
|
||||||
a version-specific suffix on "make altinstall".
|
a version-specific suffix on "make altinstall".
|
||||||
|
|
||||||
|
|
|
@ -1750,8 +1750,8 @@ then
|
||||||
esac
|
esac
|
||||||
fi;;
|
fi;;
|
||||||
NetBSD*|DragonFly*)
|
NetBSD*|DragonFly*)
|
||||||
LDSHARED="cc -shared"
|
LDSHARED="$(CC) -shared"
|
||||||
LDCXXSHARED="c++ -shared";;
|
LDCXXSHARED="$(CXX) -shared";;
|
||||||
OpenUNIX*|UnixWare*)
|
OpenUNIX*|UnixWare*)
|
||||||
if test "$GCC" = "yes" ; then
|
if test "$GCC" = "yes" ; then
|
||||||
LDSHARED='$(CC) -shared'
|
LDSHARED='$(CC) -shared'
|
||||||
|
|
Loading…
Reference in New Issue