Update mathomatic to 11.3c.
Changes: "factor number" command now accepts more than one integer. Added file "mathomatic.ico". Added temporary fix for 64 bit longs. Added file "VERSION" which contains the version number of Mathomatic. "makefile" modified. Renamed "lgpl.txt" to "LICENSE.txt". "make install" now installs all HTML files in "/usr/local/doc/mathomatic". Added compile-time define "TIMEOUT_SECONDS". Useful for limiting the amount of time Mathomatic can run as a CGI.
This commit is contained in:
parent
73e8702339
commit
2933f80830
5 changed files with 15 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES,v 1.6794 2004/08/04 19:41:15 jlam Exp $
|
||||
$NetBSD: CHANGES,v 1.6795 2004/08/04 19:59:59 minskim Exp $
|
||||
|
||||
Changes to the packages collection and infrastructure in 2004:
|
||||
|
||||
|
@ -3724,3 +3724,4 @@ Changes to the packages collection and infrastructure in 2004:
|
|||
Updated postgresql74-client to 7.4.3nb1 [recht 2004-08-04]
|
||||
Updated p5-Sendmail-PMilter to 0.94 [tv 2004-08-04]
|
||||
Updated cyrus-sasl2 to 2.1.19 [jlam 2004-08-04]
|
||||
Updated mathomatic to 11.3c [minskim 2004-08-04]
|
||||
|
|
3
doc/TODO
3
doc/TODO
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: TODO,v 1.2003 2004/08/04 18:24:14 jlam Exp $
|
||||
$NetBSD: TODO,v 1.2004 2004/08/04 19:59:59 minskim Exp $
|
||||
|
||||
Suggested new packages
|
||||
======================
|
||||
|
@ -298,7 +298,6 @@ Suggested package updates
|
|||
o maradns-1.0.23
|
||||
o marbles-1.0.6
|
||||
o matchbox-0.8.2 [pkgsrc-wip]
|
||||
o mathomatic-11.3c
|
||||
o micq-0.4.11
|
||||
o midnight-commander-4.6.0
|
||||
o minicom-2.1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.17 2004/07/26 17:37:02 minskim Exp $
|
||||
# $NetBSD: Makefile,v 1.18 2004/08/04 19:59:59 minskim Exp $
|
||||
#
|
||||
|
||||
DISTNAME= mathomatic-11.3b
|
||||
DISTNAME= mathomatic-11.3c
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= http://www.panix.com/~gesslein/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.16 2004/07/26 17:37:02 minskim Exp $
|
||||
$NetBSD: distinfo,v 1.17 2004/08/04 19:59:59 minskim Exp $
|
||||
|
||||
SHA1 (mathomatic-11.3b.tgz) = deb0c0211524bc6acf878485cec932c9771b9476
|
||||
Size (mathomatic-11.3b.tgz) = 125769 bytes
|
||||
SHA1 (patch-aa) = f590bd224831b7f882f7cfed72ba6db39e866985
|
||||
SHA1 (mathomatic-11.3c.tgz) = 6246998f340460bb588caef47e74b45824e7696a
|
||||
Size (mathomatic-11.3c.tgz) = 126520 bytes
|
||||
SHA1 (patch-aa) = f2879261541a9c5934404b0f7a6272343feb57ca
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
$NetBSD: patch-aa,v 1.6 2004/06/28 13:58:25 minskim Exp $
|
||||
$NetBSD: patch-aa,v 1.7 2004/08/04 19:59:59 minskim Exp $
|
||||
|
||||
--- makefile.orig 2004-06-25 18:30:52.000000000 -0500
|
||||
--- makefile.orig 2004-08-02 20:07:42.000000000 -0500
|
||||
+++ makefile
|
||||
@@ -1,13 +1,13 @@
|
||||
@@ -1,14 +1,14 @@
|
||||
# Makefile for compiling Mathomatic for UNIX or Linux or Mac OS X.
|
||||
|
||||
-CFLAGS = -O -DUNIX
|
||||
VERSION = `cat VERSION`
|
||||
-CFLAGS = -O -DUNIX -DVERSION=\"$(VERSION)\"
|
||||
-LDFLAGS = -s
|
||||
+CFLAGS += -O -DUNIX
|
||||
+CFLAGS += -O -DUNIX -DVERSION=\"$(VERSION)\"
|
||||
+#LDFLAGS = -s
|
||||
LIBS = -lm
|
||||
|
||||
|
|
Loading…
Reference in a new issue