diff options
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | tools/tcl.hpj.in | 2 | ||||
-rw-r--r-- | unix/aclocal.m4 | 16 | ||||
-rw-r--r-- | unix/tcl.m4 | 3 |
4 files changed, 21 insertions, 14 deletions
@@ -1,3 +1,17 @@ +1999-07-16 <redman@scriptics.com> + + * 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. + +1999-07-15 <redman@scriptics.com> + + * tools/tcl.wse.in: Fixed naming of target files for Windows. + 1999-07-14 <jpeek@scriptics.com> * doc/re_syntax.n: Deleted sentence as suggested by Scott S. diff --git a/tools/tcl.hpj.in b/tools/tcl.hpj.in index ff1cda5..e5fcd70 100644 --- a/tools/tcl.hpj.in +++ b/tools/tcl.hpj.in @@ -5,7 +5,7 @@ HCW=0 LCID=0x409 0x0 0x0 ;English (United States)
REPORT=Yes
TITLE=Tcl/Tk Reference Manual
-CNT=tcl81.cnt
+CNT=tcl82.cnt
COPYRIGHT=Copyright © 1999 Scriptics Corporation
HLP=tcl82.hlp
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) ]) - diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 9d08eaf..eb24967 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -701,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" |