Commit 68fcea01 authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Add :DRAGONFLY to OSes checked for.

Thanks to Christophe for patch.
parent 574e5247
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -146,10 +146,13 @@ then returning the non-empty string value of the variable"
  (defun operating-system ()
    "The operating system of the current host"
    (first-feature
     '(:cygwin (:win :windows :mswindows :win32 :mingw32) ;; try cygwin first!
     '(:cygwin
       (:win :windows :mswindows :win32 :mingw32) ;; try cygwin first!
       (:linux :linux :linux-target) ;; for GCL at least, must appear before :bsd
       (:macosx :macosx :darwin :darwin-target :apple) ; also before :bsd
       (:solaris :solaris :sunos) (:bsd :bsd :freebsd :netbsd :openbsd) :unix
       (:solaris :solaris :sunos)
       (:bsd :bsd :freebsd :netbsd :openbsd :dragonfly)
       :unix
       :genera)))

  (defun architecture ()