diff options
author | das <das> | 2008-03-27 13:43:59 (GMT) |
---|---|---|
committer | das <das> | 2008-03-27 13:43:59 (GMT) |
commit | 48f2e0370e703fce75b262d6c974e84c1f3c130b (patch) | |
tree | 2485649e31bddd6a79a312edf03c84a5ddd1918a /unix/tcl.m4 | |
parent | 4adb7fb5da704613552ea3413c332a1af1cf9def (diff) | |
download | tk-48f2e0370e703fce75b262d6c974e84c1f3c130b.zip tk-48f2e0370e703fce75b262d6c974e84c1f3c130b.tar.gz tk-48f2e0370e703fce75b262d6c974e84c1f3c130b.tar.bz2 |
* unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166]
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 |