chiark / gitweb /
Fixed memory corruption problem in KEYVAL-NAME
[clg] / tools / clg-tools.asd
CommitLineData
71931357 1;;; -*- Mode: lisp -*-
2
3(defpackage #:clg-tools
73dc6242 4 (:use #:common-lisp #:asdf))
71931357 5
6
7(in-package #:clg-tools)
8
818f2430 9#+clisp
e4aed966 10(unless custom:*parse-namestring-ansi*
11 (error "Standard behaviour of PARSE-NAMESTRING must be enabled by setting CUSTOM:*PARSE-NAMESTRING-ANSI* to non-NIL or running clisp with the -ansi option"))
71931357 12
13(defsystem clg-tools
6ad73e89 14 :depends-on (#+sbcl sb-posix)
15 :components ((:file "autoexport")
16 (:file "utils")
17 (:file "config" :depends-on ("utils"))
18 (:file "asdf-extensions" :depends-on ("utils"))))