Hi,
I tried to install tbnl using asdf-install, but it breaks trying to install BASE64 package even though I have CL-BASE64 installed. I guess a type in the asdf file.
Regards,
Frank
Frank maillist@sonnemans.net writes:
Hi,
I tried to install tbnl using asdf-install, but it breaks trying to install BASE64 package even though I have CL-BASE64 installed. I guess a type in the asdf file.
are u under Debian ? because under Debian, package name isn't base64 but cl-base64
:depends-on (#:md5 #:base64 #:cl-ppcre #:kmrcl #:url-rewrite)
i change this line with the correct name and installation seems ok
:depends-on (#:md5 #:cl-base64 #:cl-ppcre #:kmrcl #:url-rewrite)
Regards,
Frank
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
On Wed, 12 May 2004 18:55:35 +0200, Nicolas Lamirault lam@tuxfamily.org wrote:
because under Debian, package name isn't base64 but cl-base64
:depends-on (#:md5 #:base64 #:cl-ppcre #:kmrcl #:url-rewrite)
i change this line with the correct name and installation seems ok
:depends-on (#:md5 #:cl-base64 #:cl-ppcre #:kmrcl #:url-rewrite)
Yes, sorry, my fault. I was using an old version of the base64 library on my machine. I'll make a new release which fixes this.
Thanks, Edi.