Lisp HUG Maillist Archive

Error trying to deliver on Solaris

Hello,

I'm getting the following error when I try to deliver on Solaris using
the HobbistDV Edition:

Quitting because of error:
   The value :INTERFACE of DELIVERY::LEVEL inside LISPWORKS:DELIVER is
not Delivery level (integer between 0 and 5).

Here is my build file:

(in-package "CL-USER")
(load-all-patches)
(load "~/lispworks/dugui.lisp")
(deliver #'dugui
         #+:cocoa
         (create-macos-application-bundle
          "~/lispworks/dugui.app"
          ;; Do not copy file associations...
          :document-types nil
          ;; ...or CFBundleIdentifier from the LispWorks bundle
          :identifier "ca.busfactor1.dugui"
          )
         0
         :interface :capi
         :shake-shake-shake t
         :compact t ; didn't do much
         )

I can successfully deliver with no errors on MacOS.  The only
documentation for :interface that I could see was the value of :capi.

--
Burton Samograd

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Re: Error trying to deliver on Solaris

You have a #+cocoa (stuff) read conditional that when not on OSX won't be read as anything. You're calling deliver with one less argument!

On 19 January 2017 at 06:14, Burton Samograd <busfactor1@gmail.com> wrote:
Hello,

I'm getting the following error when I try to deliver on Solaris using
the HobbistDV Edition:

Quitting because of error:
   The value :INTERFACE of DELIVERY::LEVEL inside LISPWORKS:DELIVER is
not Delivery level (integer between 0 and 5).

Here is my build file:

(in-package "CL-USER")
(load-all-patches)
(load "~/lispworks/dugui.lisp")
(deliver #'dugui
         #+:cocoa
         (create-macos-application-bundle
          "~/lispworks/dugui.app"
          ;; Do not copy file associations...
          :document-types nil
          ;; ...or CFBundleIdentifier from the LispWorks bundle
          :identifier "ca.busfactor1.dugui"
          )
         0
         :interface :capi
         :shake-shake-shake t
         :compact t ; didn't do much
         )

I can successfully deliver with no errors on MacOS.  The only
documentation for :interface that I could see was the value of :capi.

--
Burton Samograd

_______________________________________________
Lisp Hug - the mailing list for LispWorks users
lisp-hug@lispworks.com
http://www.lispworks.com/support/lisp-hug.html

Updated at: 2020-12-10 08:31 UTC