From 3af12e21a04eab59cc3e1120e7d72e1ae5125820 Mon Sep 17 00:00:00 2001 From: dlichteblau Date: Sun, 7 Oct 2007 15:13:55 +0000 Subject: [PATCH] removed runes.asd --- runes.asd | 63 ------------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 runes.asd diff --git a/runes.asd b/runes.asd deleted file mode 100644 index a49ccca..0000000 --- a/runes.asd +++ /dev/null @@ -1,63 +0,0 @@ -;;; XXX Die vielen verschiedenen Systeme hier sollten vielleicht -;;; Module eines grossen Systems CXML werden? - -(defpackage :runes-system - (:use :asdf :cl) - (:export #:*utf8-runes-readtable*)) - -(in-package :runes-system) - -(defvar *utf8-runes-readtable*) - -(defclass closure-source-file (cl-source-file) ()) - -#+sbcl -(defmethod perform :around ((o compile-op) (s closure-source-file)) - ;; shut up already. Correctness first. - (handler-bind ((sb-ext:compiler-note #'muffle-warning)) - (let (#+sbcl (*compile-print* nil)) - (call-next-method)))) - -#-(or rune-is-character rune-is-integer) -(progn - (format t "~&;;; Checking for wide character support...") - (force-output) - (pushnew (dotimes (x 65536 - (progn - (format t " ok, characters have at least 16 bits.~%") - :rune-is-character)) - (unless (or (<= #xD800 x #xDFFF) - (and (< x char-code-limit) (code-char x))) - (print (code-char x)) - (format t " no, reverting to octet strings.~%") - (return :rune-is-integer))) - *features*)) - -#-rune-is-character -(format t "~&;;; Building Closure with (UNSIGNED-BYTE 16) RUNES~%") - -#+rune-is-character -(format t "~&;;; Building Closure with CHARACTER RUNES~%") - -(defsystem :runes - :default-component-class closure-source-file - :pathname (merge-pathnames - "runes/" - (make-pathname :name nil :type nil :defaults *load-truename*)) - :serial t - :components - ((:file "package") - (:file "definline") - (:file runes - :pathname - #-rune-is-character "runes" - #+rune-is-character "characters") - #+rune-is-integer (:file "utf8") - (:file "syntax") - #-x&y-streams-are-stream (:file "encodings") - #-x&y-streams-are-stream (:file "encodings-data") - #-x&y-streams-are-stream (:file "xstream") - #-x&y-streams-are-stream (:file "ystream") - #+x&y-streams-are-stream (:file #+scl "stream-scl") - ) - :depends-on (#-scl :trivial-gray-streams))