diff options
author | das <das@noemail.net> | 2008-03-27 13:43:58 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2008-03-27 13:43:58 (GMT) |
commit | 38271f80e383eed1b66495a98fbe8197450b3f7a (patch) | |
tree | 2485649e31bddd6a79a312edf03c84a5ddd1918a | |
parent | 0bd088e4a8cc8b1b57fd137463b8c89d4ad6dc96 (diff) | |
download | tk-38271f80e383eed1b66495a98fbe8197450b3f7a.zip tk-38271f80e383eed1b66495a98fbe8197450b3f7a.tar.gz tk-38271f80e383eed1b66495a98fbe8197450b3f7a.tar.bz2 |
* unix/tcl.m4 (SunOS-5.1x): fix 64bit support for Sun cc. [Bug 1921166]
FossilOrigin-Name: c54f693b98aed895010c26fa39e1c527fdcb63f5
-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.13 + 2008-02-27 Daniel Steffen <das@users.sourceforge.net> * macosx/tkMacOSXDraw.c: workaround leak in Carbon SetPortPenPixPat() 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 |