Last change
on this file was
14305,
checked in by Mark Evenson, 12 years ago
|
Merge r14301 to trunk | mevenson | 2012-12-06 21:17:24 +0100 (Thu, 06 Dec 2012) | 5 lines
doc: Start annotating all the places we need to change things with RDF.
Do
TODO: grovel through the source tree to find all textual lines
containing probable RDF statements.
|
File size:
712 bytes
|
Line | |
---|
1 | ;;;; -*- Mode: LISP -*- |
---|
2 | |
---|
3 | ;;;; Need to have jna.jar present for CFFI to work. |
---|
4 | (asdf:defsystem :jna |
---|
5 | :version "3.5.1" |
---|
6 | :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/jna#3.5.1" |
---|
7 | :defsystem-depends-on (jss abcl-asdf) |
---|
8 | ;; FIXME: always seems to be resolving the LATEST maven artifact. |
---|
9 | :components ((:mvn "net.java.dev.jna/jna/3.5.1" |
---|
10 | :alternate-uri "http://repo1.maven.org/maven2/net/java/dev/jna/jna/3.5.1/jna-3.5.1.jar" |
---|
11 | :classname "com.sun.jna.Native"))) |
---|
12 | |
---|
13 | (in-package :asdf) |
---|
14 | (defmethod perform :after ((o load-op) (c (eql (find-system :jna)))) |
---|
15 | (when (jss:find-java-class "com.sun.jna.Native") |
---|
16 | (provide :jna))) |
---|
17 | |
---|
18 | |
---|
Note: See
TracBrowser
for help on using the repository browser.