Major changes: - Added alternate command names. - Don't allow imaginary numbers in integer only expressions. - Made poly_gcd_simp() do its job in one pass. - Add "set autosolve" option. - Make entry of "=(expression)" into "0=(expression)", instead of being an error. - Add fraction command. - Made simplification default to polynomial simplify. - "replace constants" command now approximates constants with roots. - Fixed a floating point accuracy issue recently introduced. - Other bug fixes and improvements.
15 lines
393 B
Text
15 lines
393 B
Text
$NetBSD: patch-aa,v 1.17 2006/08/15 15:38:26 minskim Exp $
|
|
|
|
--- makefile.orig 2006-07-23 03:22:54.000000000 -0700
|
|
+++ makefile
|
|
@@ -7,8 +7,8 @@ CFLAGS += -O -DUNIX -DVERSION=\"$(VERSI
|
|
LDFLAGS += -s
|
|
LIBS += -lm
|
|
|
|
-CFLAGS += $(READLINE:1=-DREADLINE)
|
|
-LIBS += $(READLINE:1=-lreadline -lncurses)
|
|
+CFLAGS += -DREADLINE
|
|
+LIBS += -lreadline
|
|
|
|
prefix ?= /usr/local
|
|
bindir ?= $(prefix)/bin
|