diff options
author | mdejong <mdejong> | 2003-06-25 21:35:25 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2003-06-25 21:35:25 (GMT) |
commit | a9fff24dfa7b2777f886dad59e7bdc5129262a15 (patch) | |
tree | 5ad65f624e743275c74a3bb9f0079d06dc51186e /unix/tcl.m4 | |
parent | 0b3bcf782c99fda3becd1a089c4bc3265f0cddaa (diff) | |
download | tcl-a9fff24dfa7b2777f886dad59e7bdc5129262a15.zip tcl-a9fff24dfa7b2777f886dad59e7bdc5129262a15.tar.gz tcl-a9fff24dfa7b2777f886dad59e7bdc5129262a15.tar.bz2 |
* 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.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index e407792..87d8fcc 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1333,8 +1333,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 |