Hello,
I am running clisp on cygwin on windows. I am using a package that would like to maintain a distinction between cygwin and unix libraries in cffi:define-foreign-library (cygwin libraries are windows dll's). :cygwin is a member of *features*
The package maintainer tried using the :cygwin feature, but cffi-feature-p does not capture it. I tried adding :cygwin to the list of exported features in features.lisp, but that did not work. I looked at the logic of cffi-features-p, but don't quite understand it.
So, how is it possible to add :cygwin to the list of features to cffi-features?
Thank you,
Mirko
On Thu, Jan 29, 2009 at 3:24 AM, Mirko Vukovic mirko.vukovic@gmail.com wrote:
The package maintainer tried using the :cygwin feature, but cffi-feature-p does not capture it.
We're using ALEXANDRIA:FEATUREP since 0.10.0, so it should work.
On Sat, Jan 31, 2009 at 6:26 AM, Luís Oliveira luismbo@gmail.com wrote:
On Thu, Jan 29, 2009 at 3:24 AM, Mirko Vukovic mirko.vukovic@gmail.com wrote:
The package maintainer tried using the :cygwin feature, but cffi-feature-p does not capture it.
We're using ALEXANDRIA:FEATUREP since 0.10.0, so it should work.
-- Luís Oliveira http://student.dei.uc.pt/~lmoliv/
My mistake. I reloaded, and it does work as advertised.