Re: [Clg-devel] clg for gtk+2.0
Brought to you by:
espen
|
From: Marco A. <ma...@cs...> - 2002-03-22 18:22:33
|
> From: Lynn Quam <qu...@ai...> > Sender: clg...@li... > X-BeenThere: clg...@li... > X-Mailman-Version: 2.0.5 > Precedence: bulk > List-Help: <mailto:clg...@li...?subject=help> > List-Post: <mailto:clg...@li...> > List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/clg-devel>, > <mailto:clg...@li...?subject=subscribe> > List-Id: <clg-devel.lists.sourceforge.net> > List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/clg-devel>, > <mailto:clg...@li...?subject=unsubscribe> > List-Archive: <http://www.geocrawler.com/redir-sf.php3?list=clg-devel> > X-Original-Date: Fri, 15 Mar 2002 21:24:54 -0800 > Date: Fri, 15 Mar 2002 21:24:54 -0800 > Content-Length: 2093 > > I checked out the clg sources from teh SoruceForge CVS repository. > > I attempted to do (load "clg.system") as per the instructions in the > README file and got the following error: > > CMU Common Lisp CMUCL files of Feb 18 12:08 2002 -0800 HEAD, built Mon Feb 18 12:08:34 PST 2002, running on rom > Send questions and bug reports to your local CMU CL maintainer, > or to cmu...@co.... and cmu...@co.... respectively. > Loaded subsystems: > Python 1.0, target Intel x86 > CLOS based on PCL version: September 16 92 PCL (f) > * (load "clg.system") > > ; Loading #p"/home/rom1/downloads/gtk/clg-CVS/clg.system". > ;; Loading #p"/home/rom1/downloads/gtk/clg-CVS/tools/config.lisp". > ;; Loading #p"/home/rom1/downloads/gtk/clg-CVS/tools/sharedlib.lisp". > > Reader error at 1187 on #<Stream for file "/home/rom1/downloads/gtk/clg-CVS/clg.system">: > Package "MK" not found. > > I do not find any definitions for the MK package in the sources > checked out from the CVS repository. Is this something you forget to > include in the CVS repository? It is something that it should *not* be included in the repository. The best thing to do is to put the following at the head of the clg.system file (eval-when (:load-toplevel :execute :compile-toplevel) (unless (find-package "MAKE") (error "CLG requires the MK:DEFSYSTEM to be properly compiled~@ and loaded.~% You can download MK:DEFSYSTEM from the CLOCC.~@ <http://sourceforge.net/projects/clocc/."))) You should get MK:DEFSYSTEM from the CLOCC and make sure it is loaded in your CL system before using it. Cheers -- Marco Antoniotti ======================================================== NYU Courant Bioinformatics Group tel. +1 - 212 - 998 3488 719 Broadway 12th Floor fax +1 - 212 - 995 4122 New York, NY 10003, USA http://bioinformatics.cat.nyu.edu "Hello New York! We'll do what we can!" Bill Murray in `Ghostbusters'. |