Custom Query (1030 matches)
Results (805 - 807 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1413 | fixed | CCL binary tarballs are not available over TLS | ||
| Description |
There seems to be currently 4 sources for CCL tarballs:
The first three sources do not provide encrypted transport which is a security issue. Github release tarballs are available over TLS, but the last stable version (1.11) is only available as source. I just created a stable CCL package for Archlinux (https://aur.archlinux.org/packages/ccl) which uses the FTP source, but it would be more secure to be able to switch to a source that supports TLS transport.
Providing binary tarballs (such as |
|||
| #669 | fixed | Frequent but unpredictable terminating in Win32 | ||
| Description |
Hi, CCL terminates inexplicably and randomly in Win32. It leave no tangible error messages behind, except for: Process inferior-lisp exited abnormally with code 5 (progn (load "c:/slime-2009-10-15/swank-loader.lisp" :verbose t) (funcall (read-from-string "swank-loader:init")) (funcall (read-from-string "swank:start-server") "c:/DOCUME~1/bob/LOCALS~1/Temp/slime.5340" :coding-system "utf-8-unix")) *Messages*: Lisp connection closed unexpectedly: connection broken by remote peer That's all I get. I have upgraded to a later version, and it keeps happening still. The versions affected are Version 1.4-RC1-r13031 (WindowsX8632) and Version 1.4-r13122 (WindowsX8632) It happens under various conditions. Not only when I am hacking on elaborate projects with threads and FFI, but also when using the repl as a simple arithmetic calculator. I am not able to test this without Emacs/Slime, it's under active use that this issue comes up, and I can't use the naked CLI version for more than 1 minute. I am willing to build a debug version of CCL and send more info if this issue is being looked at actively. Regards. ' |
|||
| #678 | worksforme | Using a non-existant package corrupts the current package, disinterns builtins (CCL/Win32) | ||
| Description |
Hi, When the a package is present, say, HUNCHENTOOT, the following works (defpackage :foo
(in-package :foo) .. However, as start to use more packages during the course of hacking, I sometimes :USE non-existent package or misspell its name. (defpackage :foo
(in-package :foo) .. On Linux, I get the correct behaviour: The name "FROB" does not designate any package.
But on Win32, things get unwieldy: I first get the error, but if I try to correct it by fixing the spelling or loading an ASDF system, all forms refuse to evaluate. For example, after fixing the typo, I get this: Undefined function :USE called with arguments (:CL
Even evaluating () returns ==> COMMON-LISP:NIL The only way I know how to repair things without restarting CCL is to do this: FOO> (cl-user::in-package :cl-user) #<Package "COMMON-LISP-USER"> CL-USER> (in-package :foo) #<Package "FOO"> Attached is a stack trace. CL-USER> (lisp-implementation-version) "Version 1.4 (WindowsX8632)" |
|||
