From eea7b43e1b6ff546c9c716e604f878f3cbb2cd82 Mon Sep 17 00:00:00 2001
From: "Robert P. Goldman" <rpgoldman@gmail.com>
Date: Mon, 24 Mar 2014 17:54:50 -0500
Subject: [PATCH] Set "dxl" as type for ACL images.

---
 bundle.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bundle.lisp b/bundle.lisp
index 7c6204cf..b97f643e 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -156,10 +156,10 @@ itself.")) ;; operation on a system and its dependencies
       #+ecl
       ((member :dll :lib :shared-library :static-library :program :object :program)
        (compile-file-type :type bundle-type))
-      ((member :image) "image")
+      ((member :image) #-allegro "image" #+allegro "dxl")
       ((member :dll :shared-library) (cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll")))
       ((member :lib :static-library) (cond ((os-unix-p) "a")
-					   ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib"))))
+                                           ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib"))))
       ((eql :program) (cond ((os-unix-p) nil) ((os-windows-p) "exe")))))
 
   (defun bundle-output-files (o c)
-- 
GitLab