# HG changeset patch # User jwe # Date 773734701 0 # Node ID 68c580e45518ac27c0c4e6438d0a85a69a657d89 # Parent 0f388340e6079daf89dc5e00ea1d2486f6188b37 [project @ 1994-07-09 06:15:07 by jwe] diff --git a/Makeconf.in b/Makeconf.in --- a/Makeconf.in +++ b/Makeconf.in @@ -41,15 +41,15 @@ # Clean up INCFLAGS a bit if we are not compiling in a separate # directory. ifeq ($(srcdir),.) - TMP_IF_1 = -I. + TMP_IF_1 = -I. -I../src else - TMP_IF_1 = -I. -I$(srcdir) + TMP_IF_1 = -I. -I$(srcdir) -I../src endif ifeq ($(TOPDIR),$(top_srcdir)) - TMP_IF_2 = -I$(TOPDIR) -I$(TOPDIR)/liboctave + TMP_IF_2 = -I$(TOPDIR) -I$(TOPDIR)/liboctave -I$(TOPDIR)/src else - TMP_IF_2 = -I$(TOPDIR) -I$(TOPDIR)/liboctave \ - -I$(top_srcdir) -I$(top_srcdir)/liboctave + TMP_IF_2 = -I$(TOPDIR) -I$(TOPDIR)/liboctave -I$(TOPDIR)/src \ + -I$(top_srcdir) -I$(top_srcdir)/liboctave -I$(top_srcdir)/src endif INCFLAGS = $(TMP_IF_1) $(TMP_IF_2) diff --git a/acconfig.h b/acconfig.h --- a/acconfig.h +++ b/acconfig.h @@ -15,6 +15,9 @@ /* Define if you don't have atanh(). */ #undef ATANH_MISSING +/* Define if your math.h declares struct exception for matherr() */ +#undef EXCEPTION_IN_MATH + /* Define if your Fortran compiler appends an underscore to external names. */ #undef F77_APPEND_UNDERSCORE diff --git a/src/Makefile.in b/src/Makefile.in --- a/src/Makefile.in +++ b/src/Makefile.in @@ -38,11 +38,11 @@ f-npsol.h f-qpsol.h f-qr.h f-quad.h f-qzval.h f-rand.h \ f-schur.h f-svd.h f-syl.h file-io.h fnmatch.h g-builtins.h \ 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 \ + missing-math.h octave.h octave-hist.h oct-obj.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-plot.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.h tree-cmd.h tree-const.h \ + tree-expr.h tree-plot.h tc-rep.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,8 +54,8 @@ 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 token.cc tree.cc tree-const.cc tree-plot.cc \ - tc-extras.cc unwind-prot.cc user-prefs.cc utils.cc \ + t-builtins.cc token.cc tree-cmd.cc tree-const.cc tree-expr.cc \ + tree-plot.cc tc-rep.cc unwind-prot.cc user-prefs.cc utils.cc \ variables.cc xdiv.cc xpow.cc SLStack.cc DEP_SOURCES_2 = $(patsubst %.l, %.cc, $(SOURCES)) @@ -73,8 +73,8 @@ 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 token.o tree.o \ - tree-const.o tree-plot.o tc-extras.o unwind-prot.o \ + strncase.o symtab.o sysdep.o t-builtins.o token.o tree-cmd.o \ + tree-const.o tree-expr.o tree-plot.o tc-rep.o unwind-prot.o \ user-prefs.o utils.o variables.o xdiv.o xpow.o SLStack.o \ @DYNAMIC_LD_OBJ@