diff options
author | dgp <dgp@users.sourceforge.net> | 2004-03-01 17:49:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-03-01 17:49:00 (GMT) |
commit | e420d95c68d8bedf7145920146bf7353479f250a (patch) | |
tree | 566dc729bf38e512d59f270a99d9541167c83984 | |
parent | 0d5e880add20e648f14f366f8b3b9ccff659bf45 (diff) | |
download | tk-e420d95c68d8bedf7145920146bf7353479f250a.zip tk-e420d95c68d8bedf7145920146bf7353479f250a.tar.gz tk-e420d95c68d8bedf7145920146bf7353479f250a.tar.bz2 |
* unix/tcl.m4 (SC_CONFIG_CFLAGS): Allow 64-bit enabling on
IRIX64-6.5* systems. [Bug 218561]
* unix/configure: autoconf-2.13
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2004-03-01 Don Porter <dgp@users.sourceforge.net> + + * unix/tcl.m4 (SC_CONFIG_CFLAGS): Allow 64-bit enabling on + IRIX64-6.5* systems. [Bug 218561] + * unix/configure: autoconf-2.13 + 2004-02-23 Daniel Steffen <das@users.sourceforge.net> *** 8.4.6 TAGGED FOR RELEASE *** diff --git a/unix/configure b/unix/configure index bdea9f6..af9adb0 100755 --- a/unix/configure +++ b/unix/configure @@ -2497,7 +2497,7 @@ fi EXTRA_CFLAGS="" LDFLAGS="" ;; - IRIX-6.*|IRIX64-6.5*) + IRIX-6.*) SHLIB_CFLAGS="" SHLIB_LD="ld -n32 -shared -rdata_shared" SHLIB_LD_LIBS='${LIBS}' diff --git a/unix/tcl.m4 b/unix/tcl.m4 index db85ff9..f5f8d72 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1067,7 +1067,7 @@ dnl AC_CHECK_TOOL(AR, ar) EXTRA_CFLAGS="" LDFLAGS="" ;; - IRIX-6.*|IRIX64-6.5*) + IRIX-6.*) SHLIB_CFLAGS="" SHLIB_LD="ld -n32 -shared -rdata_shared" SHLIB_LD_LIBS='${LIBS}' |