diff options
author | das <das@noemail.net> | 2008-03-27 13:40:59 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2008-03-27 13:40:59 (GMT) |
commit | 1663dff953d2c08e0df2e939e07aad9a84a22f25 (patch) | |
tree | 2a9b53c62ae71a2c9e0fb5d62ab6fd803f96b197 /unix/tcl.m4 | |
parent | 2ca45f64669596f0de606060b48dbbfda6bc7b58 (diff) | |
download | tcl-1663dff953d2c08e0df2e939e07aad9a84a22f25.zip tcl-1663dff953d2c08e0df2e939e07aad9a84a22f25.tar.gz tcl-1663dff953d2c08e0df2e939e07aad9a84a22f25.tar.bz2 |
* unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166]
FossilOrigin-Name: b5ecbe8396f1a99072ec6551b92914dae91a321f
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 51809fd..b2508fd 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1926,7 +1926,7 @@ dnl AC_CHECK_TOOL(AR, ar) else case $system in SunOS-5.[[1-9]][[0-9]]*) - SHLIB_LD='${CC} -G -z text';; + SHLIB_LD='${CC} -G -z text ${LDFLAGS}';; *) SHLIB_LD="/usr/ccs/bin/ld -G -z text";; esac |