diff options
author | jtb <jtb@pkgsrc.org> | 2001-06-20 06:53:40 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-06-20 06:53:40 +0000 |
commit | be19c6c2ef283b78daa7acd94ec21b62161fcf56 (patch) | |
tree | 78e337bffa0931de989dc107bd704ec005e384a0 /lang/pforth/Makefile | |
parent | 37dab3592a93d630eb655cc817ee06d19d144745 (diff) | |
download | pkgsrc-be19c6c2ef283b78daa7acd94ec21b62161fcf56.tar.gz |
Update to pforth-21.
V20
- Expand PAD for ConvertNumberToText so "-1 binary .s" doesn't crash.
Thank you Michael Connor of Vancouver for reporting this bug.
- Removed FDROP in REPRESENT to fix stack underflow after "0.0 F.".
Thank you Jim Rosenow of Minnesota for reporting this bug.
- Changed pfCharToLower to function to prevent macro expansion
bugs under VXWORKS
Thank you Jim Rosenow of Minnesota for reporting this bug.
- "0.0 F~" now checks actual binary encoding of floats. Before
this it used to just compare value which was incorrect. Now
"0.0 -0.0 0.0 F~" returns FALSE.
- Fixed definition of INPUT$ in tutorial.
Thank you Hampton Miller of California for reporting this bug.
- Added support for producing a target dictionary with a different
Endian-ness than the host CPU. See PF_BIG_ENDIAN_DIC and
PF_LITTLE_ENDIAN_DIC.
- PForth kernel now comes up in a mode that uses BASE for
numeric input when started with "-i" option. It used to
always consider numeric input as HEX. Initial BASE is decimal.
V21
- Fixed some compiler warnings.
Diffstat (limited to 'lang/pforth/Makefile')
-rw-r--r-- | lang/pforth/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/pforth/Makefile b/lang/pforth/Makefile index 0d08554c97a..d90133ca908 100644 --- a/lang/pforth/Makefile +++ b/lang/pforth/Makefile @@ -1,16 +1,16 @@ -# $NetBSD: Makefile,v 1.4 2001/04/21 01:19:09 jtb Exp $ +# $NetBSD: Makefile,v 1.5 2001/06/20 06:53:40 jtb Exp $ -DISTNAME= pfthunix19 -PKGNAME= pforth-19 +DISTNAME= pfthpc21 +PKGNAME= pforth-21 CATEGORIES= lang MASTER_SITES= http://www.softsynth.com/pforth/ -EXTRACT_SUFX= .tar.Z +EXTRACT_SUFX= .zip MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.softsynth.com/pforth/ COMMENT= Portable ANS-like Forth -WRKSRC= ${WRKDIR}/pforth +WRKSRC= ${WRKDIR} USE_GMAKE= YES MAKEFILE= ${WRKSRC}/makefile |