;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: xmlutils.asd ;;;; Purpose: ASDF definition file for Xmlutils ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Sep 2002 ;;;; ;;;; $Id$ ;;;; ;;;; This file, part of cl-xmlutils, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; cl-xmlutils users are granted the rights to distribute and use this software ;;;; as governed by the terms of the GNU Lesser General Public License ;;;; (http://www.gnu.org/licenses/lgpl.html) ;;;; ************************************************************************* (in-package #:cl-user) (defpackage #:xmlutils-system (:use #:asdf #:cl)) (in-package #:xmlutils-system) #-allegro (require :acl-compat) #+lispworks (eval-when (:compile-toplevel :load-toplevel :execute) (defvar system::*stack-overflow-behavior* :warn) (setq system::*stack-overflow-behavior* :warn)) (defsystem xmlutils :name "cl-xmlutils" :author "Franz, Inc" :maintainer "Kevin M. Rosenberg " :licence "GNU Lesser General Public License" :description "Franz's Test Harness Package" :long-description "Xmlutils provides a library for parsing HTML and XML documents." :components ((:file "phtml") (:file "pxml0") (:file "pxml1" :depends-on ("pxml0")) (:file "pxml2" :depends-on ("pxml1")) (:file "pxml3" :depends-on ("pxml2")) )) (defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'xmlutils)))) "cl")