From: espen Date: Tue, 25 Apr 2006 20:25:31 +0000 (+0000) Subject: Default value to error arg to pkg-exists-p changed to NIL X-Git-Tag: clg-0-93~343 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/e7a1c08a2fa96066cfedc83617e4865825b01ff5 Default value to error arg to pkg-exists-p changed to NIL --- diff --git a/tools/config.lisp b/tools/config.lisp index 2d3209a..bfc660d 100644 --- a/tools/config.lisp +++ b/tools/config.lisp @@ -68,8 +68,7 @@ (defun pkg-libs (package) (split-string (first (run-pkg-config package t "--libs")))) -(defun pkg-exists-p (package &key version atleast-version max-version - ( error t)) +(defun pkg-exists-p (package &key version atleast-version max-version error) (let ((version-check (cond (version (format nil "= ~A" version))