diff options
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rwxr-xr-x | unix/configure | 2 | ||||
| -rw-r--r-- | unix/tcl.m4 | 2 | 
3 files changed, 9 insertions, 2 deletions
| @@ -1,3 +1,10 @@ +2002-02-23  Mo DeJong  <supermo@bayarea.net> + +	* configure: Regen. +	* unix/tcl.m4 (SC_CONFIG_CFLAGS): Link with -n32 +	instead of -32 when building on IRIX64-6.* system. +	[Tcl bug 521707] +  2002-02-22  Don Porter <dgp@users.sourceforge.net>  	* generic/tclInt.h: diff --git a/unix/configure b/unix/configure index ee13114..5f29f1a 100755 --- a/unix/configure +++ b/unix/configure @@ -5588,7 +5588,7 @@ fi  	    ;;  	IRIX64-6.*)  	    SHLIB_CFLAGS="" -	    SHLIB_LD="ld -32 -shared -rdata_shared" +	    SHLIB_LD="ld -n32 -shared -rdata_shared"  	    SHLIB_LD_LIBS='${LIBS}'  	    SHLIB_SUFFIX=".so"  	    DL_OBJS="tclLoadDl.o" diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 499fc56..5640546 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -875,7 +875,7 @@ dnl AC_CHECK_TOOL(AR, ar, :)  	    ;;  	IRIX64-6.*)  	    SHLIB_CFLAGS="" -	    SHLIB_LD="ld -32 -shared -rdata_shared" +	    SHLIB_LD="ld -n32 -shared -rdata_shared"  	    SHLIB_LD_LIBS='${LIBS}'  	    SHLIB_SUFFIX=".so"  	    DL_OBJS="tclLoadDl.o" | 
