r5162: *** empty log message ***
[xmlutils.git] / xmlutils.asd
diff --git a/xmlutils.asd b/xmlutils.asd
new file mode 100644 (file)
index 0000000..f57bc25
--- /dev/null
@@ -0,0 +1,48 @@
+;;;; -*- 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: xmlutils.asd,v 1.1 2003/06/20 02:21:23 kevin Exp $
+;;;;
+;;;; 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 <kmr@debian.org>"
+  :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")
+