From d50d704fc8bf86408b9e2f23add29011da4cce8c Mon Sep 17 00:00:00 2001 From: hobbs Date: Sat, 15 Feb 2003 02:13:20 +0000 Subject: correct HP-UX ia64 --enable-64bit build flags --- unix/tcl.m4 | 9 +++++++-- 1 file 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 ;; -- cgit v0.12