From 0409d059035c3309035c23fce76bf896f10dd3a0 Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@gmail.com>
Date: Sun, 19 Jan 2014 20:35:00 -0600
Subject: [PATCH] Added a check for platforms that don't support the bundle op.

Currently, on Mac OSX, neither ABCL nor ECL passes the bundle-test, so
on these platform x implementation pairs, we issue a continuable error
when trying to use the BUNDLE-OP.
---
 bundle.lisp | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/bundle.lisp b/bundle.lisp
index 8aa29392..41dbbe2d 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -490,3 +490,11 @@
   (defun bundle-system (system &rest args &key force (verbose t) version &allow-other-keys)
     (declare (ignore force verbose version))
     (apply #'operate 'binary-op system args)))
+
+#+(and (not asdf-use-unsafe-mac-bundle-op)
+       (or (and ecl darwin) (and abcl darwin)))
+(defmethod perform :before ((op bundle-op) c)
+  (declare (ignorable op c))
+  (unless (uiop:featurep :asdf-use-unsafe-mac-bundle-op)
+    (cerror "Continue after modifying *FEATURES*."
+            "The BUNDLE-OPs are not supported on Mac OSX for this lisp.~%~TTo continue, push :asdf-use-unsafe-mac-bundle-op on *FEATURES*.~%~TPlease report to ASDF-DEVEL if this works for you.")))
-- 
GitLab