<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general">
    <title>gmane.lisp.mcl.general</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3306"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3305"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3304"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3303"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3302"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3301"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3300"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3299"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3298"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3297"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3296"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3295"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3294"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3293"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3292"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3291"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3290"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3289"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3288"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.lisp.mcl.general/3287"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3306">
    <title>Re: GUI help for Lisp in Small Parts</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3306</link>
    <description>&lt;pre&gt;David Johnson-Davies &amp;lt;david-fDpYTK8McCy8qtKVGud/9w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
writes:


AFAIK, there's no implementation of CAPI other than Lispworks.  
It doesn't seem to be a free software library.


So if you wanted to use CAPI on CCL, you would have to implement it
anew.



Implementing GUI with CCL can be done using the Objective-C bridge and
Cocoa objects.

I'm sorry, but I learned Objective-C before lisp, so it's painful to me
to use Cocoa without the Objective syntax.  So I implemented a few
reader macros, and I can do:

    (ql:quickload :com.informatimago.objcl)
    (objcl:enable-objcl-reader-macros)
    (let ((alert [[NSAlert alloc] init]))
      (unwind-protect
           (progn
             [alert addButtonWithTitle:&amp;lt; at &amp;gt;"OK"]
             ;; [alert addButtonWithTitle:&amp;lt; at &amp;gt;"Cancel"]
             [alert setMessageText:&amp;lt; at &amp;gt;"The sum of 3 and 4 is 7."]
             [alert setInformativeText:&amp;lt; at &amp;gt;"Ain't it great?"]
             [alert setAlertStyle:#$NSWarningAlertStyle]
             [alert runModal])
        [alert release&lt;/pre&gt;</description>
    <dc:creator>Pascal J. Bourguignon</dc:creator>
    <dc:date>2013-04-25T20:41:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3305">
    <title>Re: GUI help for Lisp in Small Parts</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3305</link>
    <description>&lt;pre&gt;What is the level of sound support in XMLisp. It was not clear on the home page.
I am interested in using it for Algorithmic Composition delivering sound in real time.

It does not have to be suitable for Live Coding like impromptu or Extempore. Those systems are great, but lack the ccl style dev environment.

Thanks,
&lt;/pre&gt;</description>
    <dc:creator>Harald Striepe</dc:creator>
    <dc:date>2013-04-24T15:57:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3304">
    <title>Re: GUI help for Lisp in Small Parts</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3304</link>
    <description>&lt;pre&gt;you examples could be done with XMLisp: http://code.google.com/p/xmlisp/

which runs with CCL on the Mac and Windows


alex

On Apr 24, 2013, at 5:23 AM, David Johnson-Davies wrote:


Prof. Alexander Repenning

University of Colorado
Computer Science Department
Boulder, CO 80309-430

vCard: http://www.cs.colorado.edu/~ralex/AlexanderRepenning.vcf


_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl
&lt;/pre&gt;</description>
    <dc:creator>Alexander Repenning</dc:creator>
    <dc:date>2013-04-24T14:21:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3303">
    <title>Re: GUI help for Lisp in Small Parts</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3303</link>
    <description>&lt;pre&gt;Hi David,

You should send your inquiry to:

Openmcl-devel &amp;lt;openmcl-devel-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

This list is for MCL (not CCL) and hasn't had any MCL related traffic for a year or more.

e

On Apr 24, 2013, at 7:23 AM, David Johnson-Davies &amp;lt;david-fDpYTK8McCy8qtKVGud/9w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:



&lt;/pre&gt;</description>
    <dc:creator>Doug Currie</dc:creator>
    <dc:date>2013-04-24T14:15:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3302">
    <title>GUI help for Lisp in Small Parts</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3302</link>
    <description>&lt;pre&gt;Can anyone help?

I'm developing a beginner's Lisp tutorial called "Lisp in Small Parts". Currently it's designed to run with LispWorks, but I want to make it work with Clozure CL too as that's more easily available to beginners; eg from the Mac App Store.

The question is - are there equivalents to the CAPI GUI commands in Clozure CL? I need to create a Clozure CL version of this page "Creating Dialogue Boxes":

http://www.plasticki.com/show?HO

I've seen references to EasyGUI, but can't find any specifications.

Thanks,
David Johnson-Davies

+------------------------------------------------------------+
David Johnson-Davies, Human-Computer Interface Ltd
17 Signet Court, Swanns Road, Cambridge, CB5 8LA, England.

Tel: +44 1223 314934, Fax: +44 1223 462562
Email: david-fDpYTK8McCy8qtKVGud/9w&amp;lt; at &amp;gt;public.gmane.org, Web: http://www.interface.co.uk/
+------------------------------------------------------------+

_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;pub&lt;/pre&gt;</description>
    <dc:creator>David Johnson-Davies</dc:creator>
    <dc:date>2013-04-24T11:23:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3301">
    <title>[Extended Deadline] European Lisp Symposium 2013 -Madrid - June 1-4</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3301</link>
    <description>&lt;pre&gt;
;;            ______   _         _____   _   __   ____  
;;           |  ____| | |       / ____| ( ) /_ | |___ \ 
;;           | |__    | |      | (___   |/   | |   __) |
;;           |  __|   | |       \___ \       | |  |__ &amp;lt; 
;;           | |____  | |____   ____) |      | |  ___) |
;;           |______| |______| |_____/       |_| |____/ 
;;                                                      
;;              European Lisp Symposium 2013 - ELS'13
;;                         Madrid, Spain
;; 
;;                        June 1-4, 2013
;;
;;           http://els2013.european-lisp-symposium.org/

                ** DEADLINE EXTENSION: March 17th **

The purpose of the European Lisp Symposium is to provide a forum for
the discussion and dissemination of all aspects of design,
implementation and application of any of the Lisp and Lisp-inspired
dialects, including Common Lisp, Scheme, Emacs Lisp, AutoLisp, ISLISP,
Dylan, Clojure, ACL2, ECMAScript, Racket, SKILL, Hop and so on. We
encourage everyone interested in L&lt;/pre&gt;</description>
    <dc:creator>Didier Verna</dc:creator>
    <dc:date>2013-03-05T16:11:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3300">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3300</link>
    <description>&lt;pre&gt;
If you use MCLIDE as your IDE on Mac, you may not need to have an IDE on Windows, as you can target your Lisp implementation running on Windows from the comfort of your Mac:

    http://mclide.com

&lt;/pre&gt;</description>
    <dc:creator>Terje Norderhaug</dc:creator>
    <dc:date>2012-04-12T16:54:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3299">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3299</link>
    <description>&lt;pre&gt;
On Apr 11, 2012, at 7:02 AM, Pascal Costanza wrote:



Looks to me as if RMCL IS depreciated already.

Don't get me wrong. I appreciate all that has been done to keep it alive for all these years. Thank you all. I think it is time to move on an focus the energy on CCL which does work quite well for most things. The one thing I am still not super happy about it the IDE on Windows. I think that could use some work. Perhaps that would be a good place for all this newfound energy once we let go of RMCL. 

(R)MCL was great. The few who still need it should be able to make things work with virtualization. Let see it ride into the sunset with some dignity. Goodbye old friend!

Alex


Prof. Alexander Repenning

University of Colorado
Computer Science Department
Boulder, CO 80309-430

vCard: http://www.cs.colorado.edu/~ralex/AlexanderRepenning.vcf


_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl
&lt;/pre&gt;</description>
    <dc:creator>Alexander Repenning</dc:creator>
    <dc:date>2012-04-12T06:39:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3298">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3298</link>
    <description>&lt;pre&gt;
On 11 Apr 2012, at 23:46, Pascal J. Bourguignon wrote:


I don't have specific applications on RMCL. I'm only trying to make sure that Closer to MOP runs on as many CL implementations as possible.


Pascal

--
Pascal Costanza
The views expressed in this email are my own, and not those of my employer.




_______________________________________________
Info-mcl mailing list
Info-mcl-7+gK9HgA2O9Wk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org
http://digitool.com/mailman/listinfo/info-mcl_digitool.com

&lt;/pre&gt;</description>
    <dc:creator>Pascal Costanza</dc:creator>
    <dc:date>2012-04-12T05:58:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3297">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3297</link>
    <description>&lt;pre&gt;
Pascal Costanza &amp;lt;pc-99OXBJU6cIpeoWH0uzbU5w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; writes:


I don't think there's a point to "upgrade" RMCL, that having been done
already with CCL.  That doesn't prevent us to use it in virtual
machines, if we may.

Do you have specific applications running on RMCL?



peter &amp;lt;p2.edoc-gM/Ye1E23mwN+BqQ9rBEUg&amp;lt; at &amp;gt;public.gmane.org&amp;gt; writes:


Well, we're speaking of source code, what's more, written in
lisp. (Ie. with a nice OO layer above the Mac Toolbox).



Harder by the day.



Eventually a solution.  But I still haven't had all the expected success
with virtual machines.  There are still often problems with the hardware
and applications using it.  (People virtualize the processor and RAM,
ok, but they forget to virtualize the hardware too).



That would have to be done to each MCL application.

And perhaps it has been done, or at least for the applications that were
deemed interesting.


So here is my question:  

Is there a lot of left-behind applications?

I can imagine that a few of them were ke&lt;/pre&gt;</description>
    <dc:creator>Pascal J. Bourguignon</dc:creator>
    <dc:date>2012-04-11T21:46:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3296">
    <title>Re: [asdf-devel] What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3296</link>
    <description>&lt;pre&gt;
On 11 Apr 2012, at 17:59, Faré wrote:


I have submitted bug reports, and provided descriptions of my setup (I think, actually, more than once). Have you entered them in the test suite for ASDF? (Do you have a test suite for ASDF?) I find it hard to believe they don't show up on your side if you continue testing that setup. (The bugs occur in SBCL, Clozure and LispWorks, for example…)


Pascal

--
Pascal Costanza
The views expressed in this email are my own, and not those of my employer.

_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>Pascal Costanza</dc:creator>
    <dc:date>2012-04-11T16:08:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3295">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3295</link>
    <description>&lt;pre&gt;Pascal, probably for the reasons you allude to, I've always tended to 
find ASDF a bit of a struggle. But I've not yet attuned myself fully 
to the opensource plug&amp;amp;play software culture.

Re. RMCL (which from me had moved on to MCL6), I think the writing 
was on the wall in many dimensions from way back.  Carbon's obviously 
of a bygone era, now snuffed out by Apple (Lion, Rosetta etc).

I just had a struggle with trying to get Snow Leopard Server (SLS) 
running through VMWare Fusion on a Lion Mac Mini Server, and failed. 
This with a view to bridging a port of a MCL app to the next viable 
lisp.  I failed.  This was not helped by the pathetic documentation 
for Fusion (which is PC/Wintel orientated) and Apple, who seem to 
have done nothing to help us do this.  They have relaxed some 
licensing rules, but in so many ways have either deliberately or 
mindlessly made things bloody awkward.  In this area I think we're 
climbing over years of Apple's efforts to prevent any use of MacOS X 
on non Apple hardware.&lt;/pre&gt;</description>
    <dc:creator>peter</dc:creator>
    <dc:date>2012-04-11T15:13:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3294">
    <title>Re: What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3294</link>
    <description>&lt;pre&gt;Clozure doesn't have plans to do more work on RMCL.  If someone wanted to hire to do some work on it we'd be happy to speak with them, but it's not clear that there's anything helpful to do.  The fact is that RMCL (and MCL) run on PowerPC and use Carbon, and both those technologies have been deprecated.

It should be possible to reimplement the highest level portions of the MCL Macintosh interface in CCL ---- things like MAKE-WINDOW and MAKE-MENU-ITEM.  But this would still be a long way from creating compatibility with existing MCL source code.

On Apr 11, 2012, at 9:02 AM, Pascal Costanza wrote:


_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>Andrew Shalit</dc:creator>
    <dc:date>2012-04-11T14:40:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3293">
    <title>What are current plans for RMCL?</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3293</link>
    <description>&lt;pre&gt;Hi,

I'd like to get an idea what the current plans for RMCL are, if any. Since the switch to OS X 10.7, there is no default support for old PowerPC applications on OS X anymore, so RMCL doesn't work anymore, at least not without a major effort. Are there any plans to find a remedy for this situation? Or will RMCL effectively become deprecated?

I'm asking for the following reasons: When ASDF was changed from 1.x to 2.x, this caused some problems for RMCL, which I eventually resolved by using Common Lisp's logical pathnames for the systems I maintain (primarily Closer to MOP and ContextL). However, the current maintainers of ASDF have an unjustified very low regard for logical pathnames, which causes a lot of pain - basically, whenever a new version of a Common Lisp implementation comes bundled with a new ASDF version, I have to deal with bugs in ASDF that in one way or the other break my setup with logical pathnames.

Since my time is limited and is better served on things other than producing bug reports f&lt;/pre&gt;</description>
    <dc:creator>Pascal Costanza</dc:creator>
    <dc:date>2012-04-11T13:02:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3292">
    <title>Intermediate debugger steps</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3292</link>
    <description>&lt;pre&gt;I need help with enabling/disabling the display of intermediate steps 
within MCL's debugger.

Any pointers would be much appreciated.
_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>peter</dc:creator>
    <dc:date>2012-03-26T14:55:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3291">
    <title>ELS 2012, Zadar, Croatia</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3291</link>
    <description>&lt;pre&gt;Apologies for the multiple postings. 

PAPER SUBMISSION DEADLINE EXTENDED 


European Lisp Symposium 2012, Zadar, Croatia, April 30th - May 1st, 2012 

http://european-lisp-symposium.org 

The purpose of the European Lisp Symposium is to provide a forum for 
the discussion and dissemination of all aspects of design, 
implementation and application of any of the Lisp and Lisp-inspired 
dialects, including Common Lisp, Scheme, Emacs Lisp, AutoLisp, ISLISP, 
Dylan, Clojure, ACL2, ECMAScript, Racket, SKILL, and so on. We 
encourage everyone interested in Lisp to participate. 


The main theme of the 2012 European Lisp Conference is 
"Interoperability: Systems, Libraries, Workflows".  Lisp based and 
functional-languages based systems have grown a variety of solutions 
to become more and more integrated with the wider world of Information 
and Communication Technologies in current use.  There are several 
dimensions to the scope of the solutions proposed, ranging from 
"embedding" of interpreters in C-based syste&lt;/pre&gt;</description>
    <dc:creator>Marco Antoniotti</dc:creator>
    <dc:date>2012-02-01T13:15:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3290">
    <title>ELS2012 Zadar, Croatia, Call for Papers</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3290</link>
    <description>&lt;pre&gt;Apologies for the multiple postings...

===========================================================================

European Lisp Symposium 2012, Zadar, Croatia, April 30th - May 1st, 2012
http://european-lisp-symposium.org

The purpose of the European Lisp Symposium is to provide a forum for
the discussion and dissemination of all aspects of design,
implementation and application of any of the Lisp and Lisp-inspired
dialects, including Common Lisp, Scheme, Emacs Lisp, AutoLisp, ISLISP,
Dylan, Clojure, ACL2, ECMAScript, Racket, SKILL, and so on. We
encourage everyone interested in Lisp to participate.


The main theme of the 2012 European Lisp Conference is
"Interoperabilty: Systems, Libraries, Workflows".  Lisp based and
functional-languages based systems have grown a variety of solutions
to become more and more integrated with the wider world of Information
and Communication Technologies in current use.  There are several
dimensions to the scope of the solutions proposed, ranging from
"embedding" of inter&lt;/pre&gt;</description>
    <dc:creator>Marco Antoniotti</dc:creator>
    <dc:date>2012-01-23T11:50:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3289">
    <title>Re: MCL on latest Mac Mini</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3289</link>
    <description>&lt;pre&gt;At 4:33 PM -0800 1/14/12, Benjamin Perrault wrote:&amp;gt;

While it's absolutely the complete, dial-to-11 antithesis of 
"supported", SL can be convinced run quite well on the new minis, at 
least the ones with the intel integrated graphics (the low end one 
and the server). I'm happily running SL server on a quad-core i7 (not 
for MCL, but to be a server) with great success.

I suspect it may well work on the mid-grade mini with the better 
video too, but that's a little more of a stretch since SL never 
supported the exact video chip that mode has, just others in the 
family. Not sure if anyone has proven what happens on that machine 
one way or another.

Getting there is nontrivial. You need both a SL-supported thunderbolt 
macbook pro and a copy of Lion. The basic strategy is to

- first, completely update the macbook pro with a copy of 10.6.8 that 
has all software updates *including* the separate thunderbolt s/w 
updates.
- 2nd, duplicate that OS/drive onto the mini over firewire using 
something like SuperD&lt;/pre&gt;</description>
    <dc:creator>John Wroclawski</dc:creator>
    <dc:date>2012-01-15T20:27:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3288">
    <title>Re: MCL on latest Mac Mini</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3288</link>
    <description>&lt;pre&gt;Many thanks all.

I got the impression (some from Apple store) that the newest Mac 
Minis (some at least) had new firmware that might (they said would) 
prevent back-grading to Snow Leopard. The Mac Minis are Core i5 and 
i7 CPU while the Mac Pro is Xeon Nehalem or Westmere and so might be 
a different matter.

Running a quad-core i7 with one 2GHz thread used by MCL under Rosetta 
and VMWare Fusion could make a port to CCL on 8 parallel threads 
tempting.

But for now I just need to run some MCL code as is on a Mac Mini. And 
a trial run with a 2.7GHz dual-core i7 with VMWare and SL might prove 
the viability.  Anyone done or know if this has been done (and run 
MCL) already?


At 8:32 PM -0500 12/1/14, Andrew Shalit wrote:

_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>peter</dc:creator>
    <dc:date>2012-01-15T19:46:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3287">
    <title>Re: MCL on latest Mac Mini</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3287</link>
    <description>&lt;pre&gt;Andrew is right. FYI: I have successfully installed MCL on a VirtualBox VM running Snow Leopard, and the VM runs inside Lion on my newly purchased Mac Pro (Quad-Coe Intel Xeon). It seems MCL runs fine.

Hongbin


On Jan 14, 2012, at 7:32 PM, Andrew Shalit wrote:


_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>Hongbin Wang</dc:creator>
    <dc:date>2012-01-15T15:34:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.lisp.mcl.general/3286">
    <title>Re: MCL on latest Mac Mini</title>
    <link>http://permalink.gmane.org/gmane.lisp.mcl.general/3286</link>
    <description>&lt;pre&gt;I don't know about downgrading, but it is definitely possible to run Snow Leopard inside a VMWare Fusion virtual machine running on Lion.  That Snow Leopard can then run Rosetta, and presumably MCL.

Depending on the version of Fusion you have, you may or may not need to trick it into thinking that you have Snow Leopard (or Lion?) Server.  That's easily done, though.  Apparently all you need to do is create a file with a certain name in a certain location.  Google/Bing is your friend in finding the details.




On Jan 14, 2012, at 5:32 PM, peter wrote:


_______________________________________________
info-mcl mailing list
info-mcl-duOd456sFkNBDgjK7y7TUQ&amp;lt; at &amp;gt;public.gmane.org
http://clozure.com/mailman/listinfo/info-mcl

&lt;/pre&gt;</description>
    <dc:creator>Andrew Shalit</dc:creator>
    <dc:date>2012-01-15T01:32:36</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.lisp.mcl.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.lisp.mcl.general</link>
  </textinput>
</rdf:RDF>
