From 4c163b7550851a77ccaed607e54f86aa2f70fae8 Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 19 May 2008 08:31:06 +0200 Subject: [PATCH] cleanup load and stupid attempt to handle ASDF problems. --- lispstat.asd | 7 ++++++- ls-demo.lisp | 5 ++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/lispstat.asd b/lispstat.asd index a1ba3f7..159f22b 100644 --- a/lispstat.asd +++ b/lispstat.asd @@ -2,7 +2,7 @@ ;;; Copyright (c) 2005--2008, by AJ Rossini ;;; ASDF packaging for CommonLisp Stat ;;; License: BSD, see the top level directory file LICENSE for details. -;;; Time-stamp: <2008-05-15 18:51:22 tony> +;;; Time-stamp: <2008-05-18 10:37:43 tony> ;;; Created: <2005-05-30 17:09:47 blindglobe> @@ -53,6 +53,11 @@ ;; (pushnew #p"C:/Lisp/libs/" asdf-util:*source-dirs* :test #'equal) ;;; back to our regularly scheduled work... +;;; We should not need these, I think, but? +(asdf:oos 'asdf:compile-op :cffi) ;; FFI +(asdf:oos 'asdf:compile-op :lift) ;; Unit Testing +(asdf:oos 'asdf:load-op :cffi) ;; FFI +(asdf:oos 'asdf:load-op :lift) ;; Unit Testing (in-package :cl-user) diff --git a/ls-demo.lisp b/ls-demo.lisp index 3c1e7bf..68f0fc9 100644 --- a/ls-demo.lisp +++ b/ls-demo.lisp @@ -3,7 +3,7 @@ ;;; See COPYRIGHT file for any additional restrictions (BSD license). ;;; Since 1991, ANSI was finally finished. Edited for ANSI Common Lisp. -;;; Time-stamp: <2008-05-15 12:54:08 tony> +;;; Time-stamp: <2008-05-17 09:37:01 tony> ;;; Creation: <2007-01-01 09:21:50 user> WRONG ;;; File: ls-demo.lisp ;;; Author: AJ Rossini @@ -15,7 +15,6 @@ ;;; designers and quality assurance people in its wake. (in-package :cl-user) -;;(load "init.lisp") ;; merged into lispstat asdf loader. (asdf:oos 'asdf:load-op 'lispstat) ;;; non-rigorous check for exports. @@ -24,7 +23,7 @@ (in-package :cl-user) (lisp-stat:binomial-quant 0.95 3 0.4) ;;; 3 (lisp-stat:binomial-quant 0 3 0.4) ;;; 0 -(lisp-stat:normal-rand 20) ;;; 20 numbers :-) +(lisp-stat:normal-rand 20) ;;; 20 floating-point numbers :-) ;;;; THIS is how I expect it to be used, either with work in ls-user, ;;;; or a cloned package similar to ls-user. -- 2.11.4.GIT