r11859: Canonicalize whitespace
[xmlutils.git] / xmlutils.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          xmlutils.asd
6 ;;;; Purpose:       ASDF definition file for Xmlutils
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of cl-xmlutils, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-xmlutils users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20 (defpackage #:xmlutils-system (:use #:asdf #:cl))
21 (in-package #:xmlutils-system)
22
23 #-allegro (require :acl-compat)
24
25 #+lispworks
26 (eval-when (:compile-toplevel :load-toplevel :execute)
27   (defvar system::*stack-overflow-behavior* :warn)
28   (setq system::*stack-overflow-behavior* :warn))
29
30 (defsystem xmlutils
31   :name "cl-xmlutils"
32   :author "Franz, Inc"
33   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
34   :licence "GNU Lesser General Public License"
35   :description "Franz's Test Harness Package"
36   :long-description "Xmlutils provides a library for parsing HTML and XML documents."
37   
38   :components
39   ((:file "phtml")
40    (:file "pxml0")
41    (:file "pxml1" :depends-on ("pxml0"))
42    (:file "pxml2" :depends-on ("pxml1"))
43    (:file "pxml3" :depends-on ("pxml2"))
44    ))
45
46 (defmethod source-file-type ((c cl-source-file) (s (eql (find-system 'xmlutils))))
47   "cl")
48