summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authormdejong <mdejong>2003-06-25 18:56:31 (GMT)
committermdejong <mdejong>2003-06-25 18:56:31 (GMT)
commitb2985d83d53d176dc990188526b12b93860253c7 (patch)
treeb71b803191dc2e3fd1a1fe4e08a0acfcb58c4de2 /unix/tcl.m4
parent7241bfce6c54be2e146d6c63dfa67d7113688c72 (diff)
downloadtcl-b2985d83d53d176dc990188526b12b93860253c7.zip
tcl-b2985d83d53d176dc990188526b12b93860253c7.tar.gz
tcl-b2985d83d53d176dc990188526b12b93860253c7.tar.bz2
2003-06-25 Mo DeJong <mdejong@users.sourceforge.net>
* unix/configure: Regen. * unix/tcl.m4 (SC_CONFIG_CFLAGS): Add -ieee when compiling with cc and add -mieee when compiling with gcc under OSF1-V5 "Tru64" systems. [Bug 748957]
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index b747142..cd55c74 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1354,8 +1354,10 @@ dnl AC_CHECK_TOOL(AR, ar)
LDFLAGS=""
CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}'
LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}'
- if test "$GCC" != "yes" ; then
- EXTRA_CFLAGS="-DHAVE_TZSET -std1"
+ if test "$GCC" = "yes" ; then
+ EXTRA_CFLAGS="-mieee"
+ else
+ EXTRA_CFLAGS="-DHAVE_TZSET -std1 -ieee"
fi
# see pthread_intro(3) for pthread support on osf1, k.furukawa
if test "${TCL_THREADS}" = "1" ; then