r3114: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 20 Oct 2002 02:00:50 +0000 (02:00 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 20 Oct 2002 02:00:50 +0000 (02:00 +0000)
debian/changelog
debian/control
kmrcl.asd

index c964fabc4bb35a34e6d6c76f5858692397a07d8f..d9f64eea56c8cc550539f0fd75341ca83ed7aee0 100644 (file)
@@ -1,3 +1,9 @@
+cl-kmrcl (1.15-1) unstable; urgency=low
+
+  * Add depends: for common-lisp-controller and cl-aserve
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Sat, 19 Oct 2002 19:59:02 -0600
+
 cl-kmrcl (1.14-1) unstable; urgency=low
 
   * ml-class.lisp: Add XHTML format
index fd7763d6fc75be21aa91ae066f12e1f23eedd66f..e4db8703e597ad08a940ac99b9f147be1793257d 100644 (file)
@@ -7,7 +7,7 @@ Standards-Version: 3.5.7.0
 
 Package: cl-kmrcl
 Architecture: all
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, common-lisp-controller, cl-aserve
 Description: General Utilities for Common Lisp Programs
  This package includes general purpose utilities for Common Lisp
  programs. It is packages for Debian primarily to support more complex
index c0048096bdfd0ff2acd146ee8f0039f9ecb127b4..b43dd7619c8dc1ca6cd055355d1b587629049219 100644 (file)
--- a/kmrcl.asd
+++ b/kmrcl.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: kmrcl.asd,v 1.14 2002/10/18 05:14:49 kevin Exp $
+;;;; $Id: kmrcl.asd,v 1.15 2002/10/20 02:00:50 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; *************************************************************************
 
 #+allegro (require :pxml)
-#+(and allegro (not common-lisp-controller)) (require :aserve)
 #+(and allegro common-lisp-controller) (c-l-c::clc-require :aserve)
-#+(or lispworks cmu) (ignore-errors (require :aserve))
-
+#+(and allegro (not common-lisp-controller)) (require :aserve)
+       
 (in-package :asdf)
 
 (defsystem :kmrcl
      (:file "xml-utils" :depends-on ("package"))
      #+(or allegro lispworks cmu sbcl scl) (:file "ml-class" :depends-on ("strings" "genutils"))
      #+(or allegro aserve) (:file "web-utils-aserve" :depends-on ("strings" "genutils"))
+     #+(and common-lisp-controller (not allegro))
+     :depends-on
+     #+(and common-lisp-controller (not allegro))
+     (:aserve)
      ))
 
 (when (ignore-errors (find-class 'load-compiled-op))