From ... From: Erik Naggum Subject: Re: Free vs Commercial Lisp Date: 1998/12/27 Message-ID: <3123733159447888@naggum.no>#1/1 X-Deja-AN: 426103881 References: <3681615a.2791804@news.newsguy.com> <3123638569450316@naggum.no> mail-copies-to: never Organization: Naggum Software; +47 8800 8879; http://www.naggum.no Newsgroups: comp.lang.lisp * Andi Kleen | Installing the latest patch set from franz.com on ACL/Linux 5.0 fails | here. I would be interested in knowing if anyone produced a working | image with the franz.com updates, and if yes with what combination of | patches. | Error (from DEBUG): Can't locate the module "PROF" the Trial Edition is really an Enterprise Edition without the runtime generator or a license to use it commercially. it has the profiler built in, but not the sys:code;prof.fasl file needed to build a new image. this may be a bug in the patch process, but the easy fix is to have the prof.fasl file. I doubt that Franz Inc will want to ship that file to Trial Edition users, so perhaps the patching procedure should be improved. anyway, the easy short-term option is to remove the (require :prof) line from sys:develenv.cl -- but you'll lose the profiler in your new image. less easy is to load all the patches every time you start, which shouldn't be that often, anyway. SYS:LOAD-PATCHES does that, but you have to load the new .fasl files, like inspect.fasl, hash.fasl, yourself. #:Erik