diff options
author | das <das> | 2008-03-27 13:43:06 (GMT) |
---|---|---|
committer | das <das> | 2008-03-27 13:43:06 (GMT) |
commit | fdf6e9307a731d717796bbeeda36704f21158256 (patch) | |
tree | d8b64d1916c79212b430ce15c830fa2bf23048b9 /unix/tcl.m4 | |
parent | 3e67fd8a57bea98ff9c3c11bad0c4170b3cd7b81 (diff) | |
download | tk-fdf6e9307a731d717796bbeeda36704f21158256.zip tk-fdf6e9307a731d717796bbeeda36704f21158256.tar.gz tk-fdf6e9307a731d717796bbeeda36704f21158256.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 9476cae..6270d24 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1950,7 +1950,7 @@ dnl AC_CHECK_TOOL(AR, ar) ], [ 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 |