Defsystem was the predecessor to ASDF.gugamilare wrote:I don't know about the other projects so I can't talk about them.
Search found 10 matches
- Mon Jul 06, 2009 8:08 am
- Forum: Common Lisp
- Topic: Mudballs... Dead?
- Replies: 3
- Views: 5245
Re: Mudballs... Dead?
- Wed May 27, 2009 2:52 pm
- Forum: Common Lisp
- Topic: GUI toolkits + CL implementations
- Replies: 6
- Views: 15976
Re: GUI toolkits + CL implementations
For GTK there's also GTK-server which is pretty easy to get started with, although it won't be very Lispy. It doesn't need an FFI and it is cross-platform. It does have its limitations which are hard to work around but for simple interfaces it should be enough. I was able to hack this together almos...
- Sat May 16, 2009 6:17 am
- Forum: The Lounge
- Topic: Wrapper library licenses
- Replies: 8
- Views: 22562
Re: Wrapper library licenses
Thanks for the extensive answers and suggestions so far. In case this helps the discussion the libraries I'm writing / have written wrappers for are: Ogre3D , Bullet and OIS . (on that note: if you're a CL programmer looking for interesting projects, a native collision / physics library and a native...
- Fri May 15, 2009 12:50 am
- Forum: The Lounge
- Topic: Wrapper library licenses
- Replies: 8
- Views: 22562
Wrapper library licenses
I am a couple of weeks away from releasing the first versions of three Common Lisp packages which all three provide an interface to a foreign library (a 3D engine, a physics engine and an input library). Since I do not really know much about licenses my initial thought was to release them under the ...
- Fri Apr 17, 2009 3:34 pm
- Forum: Common Lisp
- Topic: Using barewords not keywords in macros
- Replies: 7
- Views: 11556
Re: Using barewords not keywords in macros
Alright, figured out what went wrong. I forgot to downcase the keywords during a comparison so instead of getting filtered out they did indeed get evaluated at a later moment. I was totally focussing on the wrong part of the macro when trying to find the problem. I hereby present Iffy!: (defmacro if...
- Fri Apr 17, 2009 3:00 pm
- Forum: Common Lisp
- Topic: Using barewords not keywords in macros
- Replies: 7
- Views: 11556
Re: Using barewords not keywords in macros
I have never seen the word "bareword" used before and am fairly certain that it has no Lisp-specific meaning, so what do you mean exactly? Basically "not a keyword". I tried to explain that with my two code examples. You seem to be missing a point of macros. No, I don't :) I jus...
- Fri Apr 17, 2009 8:42 am
- Forum: Common Lisp
- Topic: Using barewords not keywords in macros
- Replies: 7
- Views: 11556
Using barewords not keywords in macros
If been trying to figure something out and neither Google has been much help nor did looking at the source for the iterate package help me. It only made me more confused. So I hope there's a simple answer to this: how does one use a bareword in a macro? An iterate form for example looks like this: (...
- Wed Mar 25, 2009 2:52 am
- Forum: Common Lisp
- Topic: Auto documentation for lisp?(output html, prefered)
- Replies: 15
- Views: 28646
Re: Auto documentation for lisp?(output html, prefered)
This is a quote from the mudballs site:gugamilare wrote:Mudballs, as much as I understand, is a replacement for ASDF, not only ASDF-install.
So it is not just a replacement for ASDF.Mudballs primary purpose is not System Definition but Repeatable System Distribution.
- Mon Mar 23, 2009 2:44 am
- Forum: Common Lisp
- Topic: Some SBCL Windows binaries
- Replies: 4
- Views: 10234
Re: Some SBCL Windows binaries
I wouldn't mind donating some money to this cause.
- Mon Mar 23, 2009 2:26 am
- Forum: Common Lisp
- Topic: Playing with iterate
- Replies: 4
- Views: 8286
Re: Playing with iterate
Like others have said, this should just work.findinglisp wrote:Ideally, I'd just (USE-PACKAGE :ITERATE) and be done with it.
Iterate is my primary looping construct. I love it. It's clear, lispy and I rarely have to check to manual to use it (very important!
