Mirko,

If you know texinfo you can patch the doc source where the links are bad, otherwise I'll try to fix it. 

If you can create a git patch to the head of cffi-libffi I will take a look at it.  I think I understand the reason for the conflict on 'second (the unit of time vs. the function that produces the second element of a sequence) but I don't know why it's not seen on other implementations.  I don't understand the other conflicts off the top of my head.

Liam

On Sun, Oct 7, 2012 at 12:14 PM, Mirko Vukovic <mirko.vukovic@gmail.com> wrote:
Liam,

I installed antik on clisp on cygwin+windows. (I also have it running on sbcl & linux).

To make it go I had to change a few things:

- minor syntax tweak in the asd file (use :asdf-system-connections instead of #:asdf-system-connections)
- shadow a few more cl symbols in package.lisp

         #+clisp #:second #+clisp #:fifth #+clisp #:tenth
         #+clisp #:rem


Also, in a few files I had to specify `cl:second' instead of just `second'

Now all but two tests are passing.

Two questions/points:
- Maybe I missed something.  Could that be the reason for the symbol conflicts.
- If you want to accept these changes, what is the best way to submit them?

Also, there are faulty links on the html documentation.  Chapter five links5 and 5.1 both lead to Section 4.5.

Thank you for the antik.  It is quite something.

I will now proceed to adapt map-grid-utils to the version of grid that is built into antik.

Mirko