diff options
author | das <das> | 2008-03-27 13:39:49 (GMT) |
---|---|---|
committer | das <das> | 2008-03-27 13:39:49 (GMT) |
commit | 71c0e3216e1c0fe86b81f15ff52bebdcab8d576e (patch) | |
tree | ebe58100a54024e9dd387608bc2106ae43f04f3a | |
parent | 6a941089dd85cb321734891f9c9cdd5a6563432c (diff) | |
download | tcl-71c0e3216e1c0fe86b81f15ff52bebdcab8d576e.zip tcl-71c0e3216e1c0fe86b81f15ff52bebdcab8d576e.tar.gz tcl-71c0e3216e1c0fe86b81f15ff52bebdcab8d576e.tar.bz2 |
* unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166]
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2008-03-27 Daniel Steffen <das@users.sourceforge.net> + + * unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166] + + * unix/configure: autoconf-2.59 + 2008-03-26 Don Porter <dgp@users.sourceforge.net> * changes: Updated for 8.5.2 release. diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 3a13ea3..0b69ba0 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1954,7 +1954,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 |