From 5e1ebe0dd8f8cdc2576fb3f536efb91ec83bb021 Mon Sep 17 00:00:00 2001 From: zickzackv Date: Sun, 18 Jan 2015 22:48:35 +0100 Subject: [PATCH] add missing conditional compilation for sbcl Added missing #+sbcl for sb-ext:*muffled-warnings*. prevented succesfully building the application with ccl --- src/parsers/command-mssql.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsers/command-mssql.lisp b/src/parsers/command-mssql.lisp index 88b0960..622e2c5 100644 --- a/src/parsers/command-mssql.lisp +++ b/src/parsers/command-mssql.lisp @@ -117,7 +117,7 @@ (excluding)) `(lambda () ;; now is the time to load the CFFI lib we need (freetds) - (let ((sb-ext:*muffled-warnings* 'style-warning)) + (let (#+sbcl(sb-ext:*muffled-warnings* 'style-warning)) (cffi:load-foreign-library 'mssql::sybdb)) (let* ((state-before (pgloader.utils:make-pgstate))