diff options
author | asau <asau@pkgsrc.org> | 2010-05-19 09:10:55 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2010-05-19 09:10:55 +0000 |
commit | 324cb3f6fe7f220fde12e570dab9a414a39a5047 (patch) | |
tree | d60af39669bc518f5ae9db332b8244fd46f541c6 /lang/gprolog/Makefile | |
parent | b5c7097024e061c67d19c88c69efe1ee3102eacc (diff) | |
download | pkgsrc-324cb3f6fe7f220fde12e570dab9a414a39a5047.tar.gz |
Update to GNU Prolog version 1.3.1.
Changes in GNU Prolog version 1.3.1:
* add working sigaction detection to detect fault addr (e.g. Mac OS X)
* add gplc option --no-mult-warn
* add prolog flags suspicious_warning, multifile_warning
* detect integer underflow/overflow in the parser
* fix a memory leak in catch/3
* increase limits (MAX_VAR_NAME_LENGTH=1024 and MAX_VAR_IN_TERM=10240)
* add PL_INT_LOWEST_VALUE and PL_INT_GREATEST_VALUE to gprolog.h
* prefix all global symbols, constants and types with Pl_ PL_ Pl
* fix a bug in the byte-code due to new max number of atoms
* provide a minimal gprolog.h
* detect if struct sigcontext needs asm/sigcontext.h on linux
* modify gplc: --c-compiler also sets linker and --linker added
* port to x86_64/bsd - many thanks to:
David Holland <dholland@netbsd.org>
* fix problem using ebx as global reg (bug in gcc 4.3.2)
* fix a bug in is/2 with [X] (X should only be an integer)
* fix a bug with atoms '/*' '*/' and '%' (were not quoted)
* increase maximum number of atoms to 1048576 (2^20)
* increase default stack sizes (16Mb for heap, 8Mb for others)
* fix stack alignment for x86_64/Solaris
* include patch from Paul Eggert <eggert@cs.ucla.edu> for sparc/solaris8
* port to x86_64/Solaris - many thanks to:
Scott L. Burson <Scott@coral8.com>
* fix a bug in arithmetics (mod)
* fix a bug in the FD solver (under 64 bits machines)
Diffstat (limited to 'lang/gprolog/Makefile')
-rw-r--r-- | lang/gprolog/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/gprolog/Makefile b/lang/gprolog/Makefile index ca522c121e1..83002d4c923 100644 --- a/lang/gprolog/Makefile +++ b/lang/gprolog/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2008/09/07 04:35:41 dholland Exp $ +# $NetBSD: Makefile,v 1.13 2010/05/19 09:10:55 asau Exp $ -DISTNAME= gprolog-1.3.0 +DISTNAME= gprolog-1.3.1 CATEGORIES= lang MASTER_SITES= ${HOMEPAGE} |