diff options
author | minskim <minskim@pkgsrc.org> | 2009-06-10 17:03:54 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2009-06-10 17:03:54 +0000 |
commit | b3af599c4274356ac48fe02a67776a12660d40e4 (patch) | |
tree | e51bb3db2763882ea36df2808eec1931bcf084b2 /math/mathomatic/patches | |
parent | 5b8ebc66cc2365c10d99192b86f54e3644db008f (diff) | |
download | pkgsrc-b3af599c4274356ac48fe02a67776a12660d40e4.tar.gz |
Update mathomatic to 14.4.4.
Changes since 14.3.6:
- Perfected the user interface for the sum, product, and integrate
commands.
- Restored initial full simplify in the limit command for better
results, that was unintentionally removed in version 14.1.0.
- Fixed an endless loop in simplification; results look better, too.
- Added "set save" command, which makes all current session options
permanent, by saving them in "~/.mathomaticrc". "set no save"
removes this file.
- Added "mathomatic -s" option, which stands for secure mode. This is
a run-time option that disallows shelling out and writing files, and
was created for use on public servers that can't use the SECURE
compile-time define.
- Doubled the default maximum mathematical expression size to allow
larger expressions.
- A fatal compilation error when compiling with defines other than
UNIX was fixed.
- Slight improvement made to simplification; results are more simple
and stable.
- The maximum integer that can be factored has been raised from 14 to
15 decimal digits.
- Small fix made to fraction command and "simplify fraction" for
better looking fractions.
- Added a "simplify quickest" command option, which does no
unfactoring nor factoring.
- Made full simplification more efficient and simpler by cutting out
unnecessary loops.
- Improved the divide command and enabled its use in the symbolic math
library. Enabled code and variables commands in library, too.
Currently, library output of these 3 commands can only be gathered
by redirecting to a file.
- Added "set autoselect" and "set auto" options. Use "set no auto" to
always store entered expressions into equation spaces, unless it is
a command.
Diffstat (limited to 'math/mathomatic/patches')
-rw-r--r-- | math/mathomatic/patches/patch-aa | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/mathomatic/patches/patch-aa b/math/mathomatic/patches/patch-aa index 95d9e6810fa..348275caf87 100644 --- a/math/mathomatic/patches/patch-aa +++ b/math/mathomatic/patches/patch-aa @@ -1,15 +1,15 @@ -$NetBSD: patch-aa,v 1.20 2008/12/21 02:02:25 minskim Exp $ +$NetBSD: patch-aa,v 1.21 2009/06/10 17:03:55 minskim Exp $ ---- makefile.orig 2008-12-18 12:57:54.000000000 -0800 +--- makefile.orig 2009-05-31 11:01:26.000000000 -0700 +++ makefile -@@ -7,8 +7,8 @@ CFLAGS += -DUNIX -DVERSION=\"$(VERSION) +@@ -10,8 +10,8 @@ CFLAGS += -O -DUNIX -DVERSION=\"$(VERSI LDLIBS += -lm # libraries to link # "make READLINE=1" to include readline support: -CFLAGS += $(READLINE:1=-DREADLINE) --LDLIBS += $(READLINE:1=-lreadline -lncurses) +-LDLIBS += $(READLINE:1=-lreadline) +CFLAGS += -DREADLINE +LDLIBS += -lreadline - # Install directories: + # Install directories follow, installs everything in /usr/local by default: prefix ?= /usr/local |