Hi, I'm probably going to add DragonFly BSD support to SBCL. The patch I'm merging contains something a bit like the attached patch to asdf, which although is probably not necessary (we'll still have the :BSD feature in) might want to be added in for completion.
Cheers, Christophe
>From 9668e7aedafbeb77310990f84989bee9424c3282 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes <cs...@cantab.net> Date: Fri, 20 Jun 2014 10:09:51 +0100 Subject: [PATCH] support for Dragonfly BSD --- uiop/os.lisp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/uiop/os.lisp b/uiop/os.lisp index 2a714b2..522f4a3 100644 --- a/uiop/os.lisp +++ b/uiop/os.lisp @@ -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 () -- 2.0.0
_______________________________________________ Asdf-devel mailing list Asdf-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel