diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-04-18 15:16:01 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-04-18 15:16:01 +0000 |
commit | 4f22912e9b319129b1bf1c599ade9f7146267949 (patch) | |
tree | 34eef70fd6fef98173ebf31c062f1839ff5c7004 /devel/meta-cvs/files/patch-unix.lisp | |
parent | - Add some games having an EULA. (diff) |
Update to 1.0.13.
PR: ports/80016
Submitted by: Johannes Groedem <johs@copyleft.no> (maintainer)
Approved by: adamw (mentor)
Notes
Notes:
svn path=/head/; revision=133585
Diffstat (limited to 'devel/meta-cvs/files/patch-unix.lisp')
-rw-r--r-- | devel/meta-cvs/files/patch-unix.lisp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/meta-cvs/files/patch-unix.lisp b/devel/meta-cvs/files/patch-unix.lisp new file mode 100644 index 000000000000..576f2b202b6a --- /dev/null +++ b/devel/meta-cvs/files/patch-unix.lisp @@ -0,0 +1,12 @@ +--- code/unix-bindings/unix.lisp~ 2004-01-08 16:34:05.000000000 +0100 ++++ code/unix-bindings/unix.lisp 2004-10-16 16:06:28.000000000 +0200 +@@ -38,7 +38,8 @@ + (defmacro def-c-call-out (sym &body args) + `(def-call-out ,sym (:language :stdc) ,@args)) + +-#.(when (> (read-from-string (lisp-implementation-version)) 2.30) ++#.(when (> (read-from-string (subseq (lisp-implementation-version) ++ 0 4)) 2.30) + (push :clisp-newer-than-2.30 *features*) + (values)) + |