;;; -*- Mode: LISP; Package: COMMON-LISP-USER; BASE: 10; Syntax: ANSI-Common-Lisp; -*- ;; Foreign function interface compatibility module ;; Copyright (C) Paul Meurer 2001-2005. All rights reserved. ;; paul.meurer@aksis.uib.no ;; (in-package :common-lisp-user) #+mk-defsystem (mk::defsystem :ff-compatibility :package :cl-user :binary-pathname "bin:ffc;" :source-pathname "projects:ffc;" :source-extension "lisp" :components (#+mcl (:subsystem :mcl :binary-pathname "mcl;" :source-pathname "mcl;" :components ("ffc-package" "ff-compatibility-mcl")) #+lispworks (:subsystem :lispworks :binary-pathname "lispworks;" :source-pathname "lispworks;" :components ("ffc-package" "ff-compatibility-lw")) #+allegro (:subsystem :allegro :source-pathname "allegro" :binary-pathname "allegro" :components ("ffc-package" "ff-compatibility-acl")) #+pcl (:module :cmucl :source-pathname "cmucl;" :binary-pathname "cmucl;" :components ("ffc-package" "ff-compatibility-cmucl")))) :eof