Support Solaris 10.
changes in sbcl-0.8.18 relative to sbcl-0.8.17:
* new feature: reloading changed shared object files with
LOAD-SHARED-OBJECT now causes the new definitions to take effect.
+ * Solaris 10 (aka SunOS 5.10) on the SPARC platform is now
+ supported. (thanks to Dan Debertin)
* fixed bug #331: structure-class instances corresponding to
DEFSTRUCT forms are now created eagerly.
* bug fix: lambda-list parsing is now stricter vrt. order and number
lose("sunos major version=%d (which isn't 5!)", major_version);
}
minor_version = atoi(name.release+2);
- if ((minor_version == 8) || (minor_version == 9)) {
+ if ((minor_version == 8) ||
+ (minor_version == 9) ||
+ (minor_version == 10)) {
KLUDGE_MAYBE_MAP_ANON = 0x100;
- } else if (minor_version > 9) {
+ } else if (minor_version > 10) {
FSHOW((stderr, "os_init: Solaris version greater than 9?\nUnknown MAP_ANON behaviour.\n"));
lose("Unknown mmap() interaction with MAP_ANON");
} else { /* minor_version < 8 */
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.17.5"
+"0.8.17.6"