diff options
author | redman <redman> | 1999-07-16 21:40:32 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-16 21:40:32 (GMT) |
commit | 1756fda322eff378c039da15c51d75082ce43fbb (patch) | |
tree | 121cf55c24012c2ddee02f1f036611ae5b0254c0 /unix/aclocal.m4 | |
parent | 835d644cc3eed2b24fb0d60e6d71c0e011d71ca1 (diff) | |
download | tcl-1756fda322eff378c039da15c51d75082ce43fbb.zip tcl-1756fda322eff378c039da15c51d75082ce43fbb.tar.gz tcl-1756fda322eff378c039da15c51d75082ce43fbb.tar.bz2 |
* unix/aclocal.m4:
* unix/tcl.m4: Add check for Alpha/Linux to correct the IEEE
floating flag to the compiler, should be -mieee. Patch from Don
Porter.
* tools/tcl.hpj.in: Change version number of .cnt file referenced
in .HPJ file.
Diffstat (limited to 'unix/aclocal.m4')
-rw-r--r-- | unix/aclocal.m4 | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/unix/aclocal.m4 b/unix/aclocal.m4 index cfebd58..eb24967 100644 --- a/unix/aclocal.m4 +++ b/unix/aclocal.m4 @@ -1,15 +1,3 @@ -dnl aclocal.m4 generated automatically by aclocal 1.4a - -dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl This program is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without -dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A -dnl PARTICULAR PURPOSE. - #------------------------------------------------------------------------ # SC_PATH_TCLCONFIG -- # @@ -713,6 +701,9 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ LDFLAGS="" LD_SEARCH_FLAGS=""]) fi + if test "`uname -m`" = "alpha" ; then + EXTRA_CFLAGS="-mieee" + fi ;; MP-RAS-02*) SHLIB_CFLAGS="-K PIC" @@ -1704,4 +1695,3 @@ AC_DEFUN(SC_TCL_LINK_LIBS, [ AC_SUBST(TCL_LIBS) AC_SUBST(MATH_LIBS) ]) - |