summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2003-02-15 02:13:20 (GMT)
committerhobbs <hobbs@noemail.net>2003-02-15 02:13:20 (GMT)
commit54b935d5f737424e9de3be691fe9bfcc8ee7c15b (patch)
tree0ac0a12a1254ee47f0a2b24fbc4b3acabbd013c7 /unix
parenta4109d732c55a583808a098652ed70a6fbd5e0a8 (diff)
downloadtcl-54b935d5f737424e9de3be691fe9bfcc8ee7c15b.zip
tcl-54b935d5f737424e9de3be691fe9bfcc8ee7c15b.tar.gz
tcl-54b935d5f737424e9de3be691fe9bfcc8ee7c15b.tar.bz2
correct HP-UX ia64 --enable-64bit build flags
FossilOrigin-Name: e5d910b43de09db746dd9f89feb73928ed0e22a8
Diffstat (limited to 'unix')
-rw-r--r--unix/tcl.m49
1 files changed, 7 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index cbd42e9..083c4e8 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -990,8 +990,13 @@ dnl AC_CHECK_TOOL(AR, ar)
esac
else
do64bit_ok=yes
- EXTRA_CFLAGS="+DA2.0W"
- LDFLAGS="+DA2.0W $LDFLAGS"
+ if test "`uname -m`" = "ia64" ; then
+ EXTRA_CFLAGS="+DD64"
+ LDFLAGS="+DD64 $LDFLAGS"
+ else
+ EXTRA_CFLAGS="+DA2.0W"
+ LDFLAGS="+DA2.0W $LDFLAGS"
+ fi
fi
fi
;;