1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

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
This commit is contained in:
Jimmy Olgeni 2010-07-23 13:10:12 +00:00
parent 3e566ddc62
commit 0e5dcb10fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=258084
2 changed files with 15 additions and 1 deletions

View File

@ -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/ \

View File

@ -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)