diff --git a/uiop/os.lisp b/uiop/os.lisp index 2f26bc8187c35fd0e92231cb9e4432c4824fd199..24743a322518922e773e0e03f4454ede50ae9fd7 100644 --- a/uiop/os.lisp +++ b/uiop/os.lisp @@ -63,11 +63,12 @@ keywords explicitly." "Detects the current operating system. Only needs be run at compile-time, except on ABCL where it might change between FASL compilation and runtime." (loop* :with o - :for (feature . detect) :in '((:os-unix . os-unix-p) (:os-windows . os-windows-p) - (:os-macosx . os-macosx-p) + :for (feature . detect) :in '((:os-unix . os-unix-p) (:os-macosx . os-macosx-p) + (:os-windows . os-windows-p) (:genera . os-genera-p) (:os-oldmac . os-oldmac-p)) - :when (and (not o) (funcall detect)) :do (setf o feature) (pushnew o *features*) - :else :do (setf *features* (remove feature *features*)) + :when (and (or (not o) (eq feature :os-macosx)) (funcall detect)) + :do (setf o feature) (pushnew feature *features*) + :else :do (remove feature *features*) :finally (return (or o (error "Congratulations for trying ASDF on an operating system~%~ that is neither Unix, nor Windows, nor Genera, nor even old MacOS.~%Now you port it.")))))