diff options
| author | das <das> | 2008-03-27 13:40:59 (GMT) |
|---|---|---|
| committer | das <das> | 2008-03-27 13:40:59 (GMT) |
| commit | 56144feb1257fc4757cb91c67ac4d75fcdbd4a85 (patch) | |
| tree | 2a9b53c62ae71a2c9e0fb5d62ab6fd803f96b197 /unix | |
| parent | 964ff63b7f1951f80526c76f595b95e4cb3d3d9c (diff) | |
| download | tcl-56144feb1257fc4757cb91c67ac4d75fcdbd4a85.zip tcl-56144feb1257fc4757cb91c67ac4d75fcdbd4a85.tar.gz tcl-56144feb1257fc4757cb91c67ac4d75fcdbd4a85.tar.bz2 | |
* unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166]
Diffstat (limited to 'unix')
| -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 |
