diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-07-23 13:10:12 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2010-07-23 13:10:12 +0000 |
commit | 0e5dcb10fc9998d1a60a5096b6e2dbf0be384031 (patch) | |
tree | 2d035b9fc2d8174ac62689c50c77013aac034047 | |
parent | Updated to version 2.1.2 (diff) |
Building textproc/cl-meta-clisp fails with the following message:
;; Compiling file /usr/local/lib/common-lisp/meta/meta.lisp ...
*** - SYSTEM::LINE-COMMENT-READER: Invalid byte #xFC in CHARSET:ASCII
conversion
It turns out that clisp does not like non-ASCII characters, even
in comments.
textproc/cl-meta contains source code for textproc/cl-meta-clisp:
patch a comment line to use "Nuremberg" rather than the actual
German spelling, which contains the 0xFC character (U-umlaut).
This unbreaks textproc/cl-meta-clisp.
Noticed by: QAT via itetcu, pointyhat via pav
Notes
Notes:
svn path=/head/; revision=258084
-rw-r--r-- | textproc/cl-meta/Makefile | 2 | ||||
-rw-r--r-- | textproc/cl-meta/files/patch-meta.lisp | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/textproc/cl-meta/Makefile b/textproc/cl-meta/Makefile index 776deda75add..ca445d796761 100644 --- a/textproc/cl-meta/Makefile +++ b/textproc/cl-meta/Makefile @@ -6,7 +6,7 @@ PORTNAME= meta PORTVERSION= 0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc lisp MASTER_SITES= ftp://ftp.linux.org.uk/pub/lisp/experimental/cclan/ \ ftp://ftp.ntnu.no/pub/lisp/cclan/ \ diff --git a/textproc/cl-meta/files/patch-meta.lisp b/textproc/cl-meta/files/patch-meta.lisp new file mode 100644 index 000000000000..355532573b1a --- /dev/null +++ b/textproc/cl-meta/files/patch-meta.lisp @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- meta.lisp.orig ++++ meta.lisp +@@ -47,7 +47,7 @@ + ;;;; Proc. 19'th Nat'l. Conf. of the ACM (Aug. 1964),D1.3-1-D1.3-11. + ;;;; + ;;;; +-;;;; Nürnberg, 01.Jul.2001 Jochen Schmidt ++;;;; Nuremberg, 01.Jul.2001 Jochen Schmidt + + + (in-package :meta) |