Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -146,10 +146,13 @@ then returning the non-empty string value of the variable" ...@@ -146,10 +146,13 @@ then returning the non-empty string value of the variable"
(defun operating-system () (defun operating-system ()
"The operating system of the current host" "The operating system of the current host"
(first-feature (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 (:linux :linux :linux-target) ;; for GCL at least, must appear before :bsd
(:macosx :macosx :darwin :darwin-target :apple) ; also 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))) :genera)))
(defun architecture () (defun architecture ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment