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 | |
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]
-rw-r--r-- | ChangeLog | 8 | ||||
-rwxr-xr-x | unix/configure | 48 | ||||
-rw-r--r-- | unix/tcl.m4 | 6 |
3 files changed, 37 insertions, 25 deletions
@@ -1,3 +1,11 @@ +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] + 2003-06-24 Donal K. Fellows <fellowsd@cs.man.ac.uk> * doc/encoding.n: Corrected the docs to say that [source] uses the diff --git a/unix/configure b/unix/configure index 6b44276..db918ee 100755 --- a/unix/configure +++ b/unix/configure @@ -6383,8 +6383,10 @@ EOF 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 @@ -6589,17 +6591,17 @@ EOF # that don't grok the -Bexport option. Test that it does. hold_ldflags=$LDFLAGS echo $ac_n "checking for ld accepts -Bexport flag""... $ac_c" 1>&6 -echo "configure:6593: checking for ld accepts -Bexport flag" >&5 +echo "configure:6595: checking for ld accepts -Bexport flag" >&5 LDFLAGS="${LDFLAGS} -Wl,-Bexport" cat > conftest.$ac_ext <<EOF -#line 6596 "configure" +#line 6598 "configure" #include "confdefs.h" int main() { int i; ; return 0; } EOF -if { (eval echo configure:6603: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* found=yes else @@ -6646,9 +6648,9 @@ rm -f conftest* if test "x$DL_OBJS" = "xtclLoadAout.o" ; then echo $ac_n "checking sys/exec.h""... $ac_c" 1>&6 -echo "configure:6650: checking sys/exec.h" >&5 +echo "configure:6652: checking sys/exec.h" >&5 cat > conftest.$ac_ext <<EOF -#line 6652 "configure" +#line 6654 "configure" #include "confdefs.h" #include <sys/exec.h> int main() { @@ -6666,7 +6668,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6670: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6684,9 +6686,9 @@ EOF else echo $ac_n "checking a.out.h""... $ac_c" 1>&6 -echo "configure:6688: checking a.out.h" >&5 +echo "configure:6690: checking a.out.h" >&5 cat > conftest.$ac_ext <<EOF -#line 6690 "configure" +#line 6692 "configure" #include "confdefs.h" #include <a.out.h> int main() { @@ -6704,7 +6706,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6708: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6710: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6722,9 +6724,9 @@ EOF else echo $ac_n "checking sys/exec_aout.h""... $ac_c" 1>&6 -echo "configure:6726: checking sys/exec_aout.h" >&5 +echo "configure:6728: checking sys/exec_aout.h" >&5 cat > conftest.$ac_ext <<EOF -#line 6728 "configure" +#line 6730 "configure" #include "confdefs.h" #include <sys/exec_aout.h> int main() { @@ -6742,7 +6744,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6746: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6748: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6894,7 +6896,7 @@ fi echo $ac_n "checking for build with symbols""... $ac_c" 1>&6 -echo "configure:6898: checking for build with symbols" >&5 +echo "configure:6900: checking for build with symbols" >&5 # Check whether --enable-symbols or --disable-symbols was given. if test "${enable_symbols+set}" = set; then enableval="$enable_symbols" @@ -6961,17 +6963,17 @@ TCL_DBGX=${DBGX} do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:6965: checking for $ac_hdr" >&5 +echo "configure:6967: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6970 "configure" +#line 6972 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6975: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6977: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7001,17 +7003,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:7005: checking for $ac_hdr" >&5 +echo "configure:7007: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7010 "configure" +#line 7012 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7015: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7017: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7038,7 +7040,7 @@ fi done echo $ac_n "checking FIONBIO vs. O_NONBLOCK for nonblocking I/O""... $ac_c" 1>&6 -echo "configure:7042: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5 +echo "configure:7044: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5 if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else @@ -7101,7 +7103,7 @@ eval "TCL_LIB_FILE=libtcl${LIB_SUFFIX}" echo $ac_n "checking how to package libraries""... $ac_c" 1>&6 -echo "configure:7105: checking how to package libraries" >&5 +echo "configure:7107: checking how to package libraries" >&5 # Check whether --enable-framework or --disable-framework was given. if test "${enable_framework+set}" = set; then enableval="$enable_framework" 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 |