summaryrefslogtreecommitdiff
path: root/lang/clisp/patches/patch-ad
diff options
context:
space:
mode:
authorperry <perry>2006-07-20 23:05:43 +0000
committerperry <perry>2006-07-20 23:05:43 +0000
commit32b2f41d283e66160256924f8d3c835d10433e15 (patch)
tree40842134850e04ae75dfccc02636b75938724f5d /lang/clisp/patches/patch-ad
parent5e03bd24fac0205d96631fd2138fe4d2b794790b (diff)
downloadpkgsrc-32b2f41d283e66160256924f8d3c835d10433e15.tar.gz
Update to clisp 2.39
List of changes from the release notes: 2.39 (2006-07-16) ================= User visible changes -------------------- * SAVEINITMEM now accepts :SCRIPT argument that disables interpreting the first positional argument as the script name; and :DOCUMENTATION argument that is printed by the new -help-image command line option. See <http://clisp.cons.org/impnotes/image.html> and <http://clisp.cons.org/impnotes/clisp.html#opt-help-image> for details. * FFI:UINT64 and FFI:SINT64 are now compatible with C's long long type. * Stack overflow detection and recovery finally work fine on Unix. Libsigsegv is required for this, on all platforms (including MS-Windows). CLISP should neither exit nor crash under infinite recursion. If your distribution has CLISP compiled without libsigsegv, report the missing feature to its maintainer. Note that libsigsegv 2.4 is required, there are bugs in libsigsegv 2.3! * It is now possible to specify the default method-combination of a generic function, to be used when the DEFGENERIC form does not specify the :METHOD-COMBINATION explicitly, through a default initarg specification for the :METHOD-COMBINATION keyword on the generic function class. * Readline completion works with non 1:1 terminal encodings, e.g. UTF-8. * WITH-KEYBOARD works with a Unix tty even when SLIME hijacks *TERMINAL-IO*. * I/O operations on Win32 are now much faster. * New functions: POSIX:FFS, POSIX:PATHCONF. * Infrastructure: + Top-level configure now accepts a new option --with-gmalloc to use the GNU malloc implementation instead of the one supplied by libc. You may need it on older HP-UX and newer OpenBSD systems. See file unix/PLATFORMS for more information. + The value of the environment variable CFLAGS is respected by configure. * Bug fixes: + SOCKET:SOCKET-SERVER :INTERFACE now behaves as documented. + EXT:READ-BYTE-NO-HANG and SOCKET:SOCKET-STATUS used to hang on buffered binary sockets. + Allow DESTRUCTURING-BIND (a . b) with circular and dotted lists. + ADJUST-ARRAY of zero length adjustable string now works. + TIME now reports correct results when the heap grows over 4GB. + RAWSOCK functions now handle :START/:END arguments correctly. + BDB:DBC-GET now accepts :READ-COMMITTED and :READ-UNCOMMITTED. + POSIX:GROUP-INFO and POSIX:USER-INFO now handle errors correctly. * Portability: + Support DragonFly BSD.
Diffstat (limited to 'lang/clisp/patches/patch-ad')
-rw-r--r--lang/clisp/patches/patch-ad6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/clisp/patches/patch-ad b/lang/clisp/patches/patch-ad
index c2a7e99ae74..7a8bfb6874e 100644
--- a/lang/clisp/patches/patch-ad
+++ b/lang/clisp/patches/patch-ad
@@ -1,12 +1,12 @@
-$NetBSD: patch-ad,v 1.7 2006/05/10 18:26:34 joerg Exp $
+$NetBSD: patch-ad,v 1.8 2006/07/20 23:05:43 perry Exp $
---- src/asmi386.hh.orig 2006-03-24 07:35:56.000000000 +0000
+--- src/asmi386.hh.orig 2006-07-20 18:24:45.000000000 -0400
+++ src/asmi386.hh
@@ -231,7 +231,7 @@
// Define the DECLARE_FUNCTION(name) macro.
#ifdef _MSC_VER
#define DECLARE_FUNCTION(name)
--#elif defined(__svr4__) || defined(__ELF__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__ROSE__) || defined(_SEQUENT_) || defined(DGUX) || defined(_SCO_COFF) || defined(_SCO_ELF)
+-#elif defined(__svr4__) || defined(__ELF__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly) || defined(__ROSE__) || defined(_SEQUENT_) || defined(DGUX) || defined(_SCO_COFF) || defined(_SCO_ELF)
+#elif defined(__svr4__) || defined(__ELF__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__ROSE__) || defined(_SEQUENT_) || defined(DGUX) || defined(_SCO_COFF) || defined(_SCO_ELF)
#define DECLARE_FUNCTION(name) .type C(name),@function
#else