forked from franzinc/clim2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast.lisp
31 lines (26 loc) · 955 Bytes
/
last.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;; See the file LICENSE for the full license governing this code.
;;
;;; All this is allegro-sepcific.
(in-package :system)
;;; This is, perhaps, a temporary hack to get the EUC stuff loaded at
;;; a non-bad time.
;;
;; This is no longer needed, since we're using native-to-* interface now
;; The euc module may be autoloaded due to process-code usage, but the
;; autoload no longer produces a mesage at inopportune times.
#+ignore
(eval-when (:load-toplevel :execute)
(require :euc)
(find-external-format :euc))
#-(version>= 5 0 pre-final 16)
(load-patches "patch" "sys:;update-clim;*.fasl")
#+(and (version>= 5 0 pre-final 16)
(not clim-dont-load-patches))
(load-patches :product #.*patch-product-code-clim*
:version #.excl::*cl-patch-version-char*)
(provide
#+mswindows :climnt
#-mswindows
(cond ((excl::featurep :clim-motif) :climxm)
((excl::featurep :clim-openlook) :climol)
(t (error "Unknown Xt backend"))))