Custom Query (1030 matches)
Results (163 - 165 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #302 | fixed | [patch] asdf-install: suggest adding /usr/local/bin to shell search path (-> works out of the box on freebsd) | ||
| Description |
Presumably it is useful on some other systems as well. If it is deemed a potential 'untrusted' location, it should at least be acceptable to do it conditionally on running on FreeBSD. |
|||
| #304 | fixed | c_gethostbyname | ||
| Description |
c_gethostbyname on Linux is implemented using #_gethostbyname_r. But gethostbyname_r is very strange and it fails to resolve local defined hosts in /etc/hosts and it's also obsolete according to the man page. So I rewrote it using #_getaddrinfo. It seems to work, but when I replace old c_gethostbyname with it, CCL fails on rebuilding complaining about ffi-type. I'm not quite understand mechanisms of CCL's FFI and don't know how to handle this. So I attach my version of c_gethostbyname, maybe someone could adapt it. |
|||
| #305 | fixed | initialize-instance bug for classes with lots of slots | ||
| Description |
The bug is exhibited in the following test code. To run it save it to a file, load it and then evaluate the TEST-IT function. I have tested this with the binary x8664 version for 1.2-rc1. Basically I am generating a class called BAR with 600 direct slots which derives from FOO with the BAR-GENERATOR macro. If BAR has 6 slots, then the test case works as it should. ;;; Start of test case (in-package :cl-user) (defclass foo ()
(defmacro bar-generator ()
(bar-generator) (defmethod initialize-instance :after ((x foo) &key)
(defun test-it ()
;;; End of test case |
|||
