<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div><br></div>On a related note, I get the following error when compiling maven-embedder.lisp:<div><br></div><div><div>; Compiling jar:file:/Users/sly/src/abcl/dist/abcl-contrib.jar!/abcl-asdf/maven-embedder.lisp ...</div><div>; (COMMON-LISP:IN-PACKAGE :ABCL-ASDF)</div><div>; (DEFPARAMETER *MAVEN-VERBOSE* ...)</div><div>; (DEFPARAMETER *MAVENS* ...)</div><div>; (DEFUN FIND-MVN ...)</div><div>; (DEFUN FIND-MVN-LIBS ...)</div><div>; (DEFPARAMETER *MVN-LIBS-DIRECTORY* ...)</div><div>; (DEFUN MVN-VERSION ...)</div><div>; (DEFUN ENSURE-MVN-VERSION ...)</div><div>; (DEFPARAMETER *INIT* ...)</div><div>; (DEFUN INIT ...)</div><div>; (DEFUN FIND-HTTP-WAGON ...)</div><div>; (DEFUN MAKE-WAGON-PROVIDER ...)</div><div>; (DEFUN FIND-SERVICE-LOCATOR ...)</div><div>; (DEFUN MAKE-REPOSITORY-SYSTEM ...)</div><div>; (DEFUN MAKE-SESSION ...)</div><div>; (DEFPARAMETER *MAVEN-HTTP-PROXY* ...)</div><div>; (DEFUN MAKE-PROXY ...)</div><div>; (DEFPARAMETER *REPOSITORY-SYSTEM* ...)</div><div>; (DEFUN ENSURE-REPOSITORY-SYSTEM ...)</div><div>; (DEFPARAMETER *SESSION* ...)</div><div>; (DEFUN ENSURE-SESSION ...)</div><div>; (DEFUN MAKE-ARTIFACT ...)</div><div>; (DEFUN MAKE-ARTIFACT-REQUEST ...)</div><div>; (DEFUN RESOLVE-ARTIFACT ...)</div><div>; (DEFUN MAKE-REMOTE-REPOSITORY ...)</div><div>; (DEFPARAMETER *DEFAULT-REPOSITORY* ...)</div><div>; (DEFUN ADD-REPOSITORY ...)</div><div>; (DEFPARAMETER *MAVEN-REMOTE-REPOSITORY* ...)</div><div>; (DEFUN ENSURE-REMOTE-REPOSITORY ...)</div><div>; (DEFUN RESOLVE-DEPENDENCIES ...)</div><div>; (DEFUN MAKE-REPOSITORY-LISTENER ...)</div><div>; (DEFMETHOD RESOLVE ...)</div><div>; Wrote /Users/sly/.cache/common-lisp/abcl-1.3.0-dev-fasl42-macosx-x64/Users/sly/src/abcl/dist/abcl-contrib.jar/abcl-asdf/maven-embedder-TMP.abcl (0.481 seconds)</div><div><br></div><div>; Compilation unit finished</div><div>;   The following functions were used but not defined:</div><div>;     SYSTEM:PROCESS-OUTPUT</div><div><br></div><div>It seems to me that sys:process-output should be defined by then. Not sure what’s going on.</div><div><br></div><div>thanks,</div><div><br></div><div>Cyrus</div><div><br></div><div><div>On Feb 22, 2014, at 5:20 PM, Cyrus Harmon <<a href="mailto:ch-lisp@bobobeach.com">ch-lisp@bobobeach.com</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><meta http-equiv="Content-Type" content="text/html charset=us-ascii"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">I finally realized where the warning about calling the undefined function T was coming from:<div><br></div><div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 239, 255); background-color: rgb(16, 16, 16);">diff --git a/contrib/abcl-asdf/abcl-asdf.lisp b/contrib/abcl-asdf/abcl-asdf.lisp</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 239, 255); background-color: rgb(16, 16, 16);">index b96457e..2ded8b5 100644</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 239, 255); background-color: rgb(16, 16, 16);">--- a/contrib/abcl-asdf/abcl-asdf.lisp</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 239, 255); background-color: rgb(16, 16, 16);">+++ b/contrib/abcl-asdf/abcl-asdf.lisp</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);"><span style="color: #39bfcc">@@ -130,8 +130,7 @@</span> (defmethod resolve ((mvn-component asdf::mvn))</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);">         (resolve-dependencies group-id artifact-id version)</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);">         (if alternate-uri</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);">             (values (namestring alternate-uri) alternate-uri)</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(204, 64, 39); background-color: rgb(16, 16, 16);">-            (t </div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(204, 64, 39); background-color: rgb(16, 16, 16);">-             (error "Failed to resolve MVN component name ~A." name))))))</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(58, 193, 43); background-color: rgb(16, 16, 16);">+            (error "Failed to resolve MVN component name ~A." name)))))</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16); min-height: 14px;"> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);"> (defmethod resolve ((uri pathname))</div><div style="margin: 0px; font-size: 10px; font-family: Monaco; color: rgb(0, 249, 43); background-color: rgb(16, 16, 16);">   (warn "Unimplemented."))</div></div><div><br></div><div>Looks like this was copy/pasted from a cond form elsewhere.</div><div><br></div><div>Cyrus</div><div><br></div></div></blockquote></div><br></div></body></html>