# HG changeset patch # User jwe # Date 770865265 0 # Node ID c35a1ee8d272085859d63f54b90954e512ac70d9 # Parent 7874ab9735019b57b9a6dc7d92ffbe9afa374e0b [project @ 1994-06-06 01:13:08 by jwe] diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -21,7 +21,7 @@ dnl along with Octave; see the file COPYING. If not, write to the Free dnl Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. dnl -AC_REVISION($Revision: 1.31 $)dnl +AC_REVISION($Revision: 1.32 $)dnl AC_PREREQ(1.8)dnl AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -408,6 +408,8 @@ AC_DEFINE(HAVE_[$trfunc], 1), []))dnl done dnl +AC_HAVE_FUNCS(infinity quiet_nan)dnl +dnl CFLAGS="$XCFLAGS" dnl dnl Check for nonstandard but common trig functions that we need. diff --git a/src/Makefile.in b/src/Makefile.in --- a/src/Makefile.in +++ b/src/Makefile.in @@ -40,9 +40,9 @@ getopt.h gripes.h help.h idx-vector.h input.h lex.h mappers.h \ missing-math.h octave.h octave-hist.h pager.h parse.h \ pr-output.h procstream.h sighandlers.h statdefs.h symtab.h \ - sysdep.h t-builtins.h token.h tree-base.h tree-const.h tree.h \ - unwind-prot.h user-prefs.h utils.h variables.h version.h \ - xdiv.h xpow.h SLStack.h Stack.h + sysdep.h t-builtins.h token.h tree-base.h tree-const.h \ + tree-plot.h tree.h unwind-prot.h user-prefs.h utils.h \ + variables.h version.h xdiv.h xpow.h SLStack.h Stack.h SOURCES = arith-ops.cc builtins.cc dynamic-ld.cc error.cc f-chol.cc \ f-colloc.cc f-balance.cc f-dassl.cc f-det.cc f-eig.cc \ @@ -54,10 +54,9 @@ idx-vector.cc input.cc lex.l mappers.cc octave.cc \ octave-hist.cc pager.cc parse.y pr-output.cc procstream.cc \ sighandlers.cc strcasecmp.c strncase.c symtab.cc sysdep.cc \ - t-builtins.cc tc-assign.cc tc-extras.cc tc-index.cc \ - tc-inlines.cc token.cc tree.cc tree-const.cc tree-plot.cc \ - unwind-prot.cc user-prefs.cc utils.cc variables.cc xdiv.cc \ - xpow.cc SLStack.cc + t-builtins.cc token.cc tree.cc tree-const.cc tree-plot.cc \ + tc-extras.cc unwind-prot.cc user-prefs.cc utils.cc \ + variables.cc xdiv.cc xpow.cc SLStack.cc DEP_SOURCES_2 = $(patsubst %.l, %.cc, $(SOURCES)) DEP_SOURCES_1 = $(patsubst %.y, %.cc, $(DEP_SOURCES_2)) @@ -74,10 +73,10 @@ g-builtins.o getopt.o getopt1.o gripes.o help.o idx-vector.o \ input.o lex.o mappers.o octave.o octave-hist.o pager.o \ parse.o pr-output.o procstream.o sighandlers.o strcasecmp.o \ - strncase.o symtab.o sysdep.o t-builtins.o tc-assign.o \ - tc-extras.o tc-index.o token.o tree.o tree-const.o tree-plot.o \ - unwind-prot.o user-prefs.o utils.o variables.o xdiv.o xpow.o \ - SLStack.o @DYNAMIC_LD_OBJ@ + strncase.o symtab.o sysdep.o t-builtins.o token.o tree.o \ + tree-const.o tree-plot.o tc-extras.o unwind-prot.o \ + user-prefs.o utils.o variables.o xdiv.o xpow.o SLStack.o \ + @DYNAMIC_LD_OBJ@ OCTAVE_LIBS = ../liboctave.a ../libcruft.a ../libinfo.a \ ../libreadline.a @LIBDLD@