summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorhobbs <hobbs>2002-10-15 20:55:25 (GMT)
committerhobbs <hobbs>2002-10-15 20:55:25 (GMT)
commitb8a8755c670d19a707410054c2a511ff508dc426 (patch)
tree47c8e2c4702b01f1d00e1a9d02f979814992bb59 /unix/tcl.m4
parent0248d22a22c819b43f837351b9e964420120b97e (diff)
downloadtcl-b8a8755c670d19a707410054c2a511ff508dc426.zip
tcl-b8a8755c670d19a707410054c2a511ff508dc426.tar.gz
tcl-b8a8755c670d19a707410054c2a511ff508dc426.tar.bz2
* unix/configure:
* unix/tcl.m4: correct HP 11 64-bit gcc building. [Patch #601051] (martin)
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 7735236..3512bc7 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -961,7 +961,7 @@ dnl AC_CHECK_TOOL(AR, ar, :)
# Check to enable 64-bit flags for compiler/linker
if test "$do64bit" = "yes" ; then
if test "$GCC" = "yes" ; then
- hpux_arch='`gcc -dumpmachine`'
+ hpux_arch=`gcc -dumpmachine`
case $hpux_arch in
hppa64*)
# 64-bit gcc in use. Fix flags for GNU ld.
@@ -969,6 +969,7 @@ dnl AC_CHECK_TOOL(AR, ar, :)
SHLIB_LD="gcc -shared"
SHLIB_LD_LIBS=""
LD_SEARCH_FLAGS=''
+ CC_SEARCH_FLAGS=''
;;
*)
AC_MSG_WARN("64bit mode not supported with GCC on $system")
@@ -1068,7 +1069,6 @@ dnl AC_CHECK_TOOL(AR, ar, :)
LDFLAGS="-64"
fi
fi
-
;;
Linux*)
SHLIB_CFLAGS="-fPIC"