cebbeaefaebe640e34dbef91b1078daa181f9e63
[uffi.git] / tests / foreign-loader.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          foreign-loader.lisp
6 ;;;; Purpose:       Loads foreign libraries
7 ;;;; Author:        Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15
16 ;;; For CMUCL, it's necessary to load foreign files separate from their
17 ;;; usage
18
19 (in-package uffi-tests)
20
21 (unless (uffi:load-foreign-library
22          (uffi:find-foreign-library
23           #-(or macosx darwin)
24           "libz"
25           #+(or macosx darwin)
26           "z"
27           (list (pathname-directory *load-pathname*)
28                 "/usr/local/lib/" #+(or 64bit x86-64) "/usr/lib64/"
29                 "/usr/lib/" "/zlib/"))
30          :module "zlib" 
31          :supporting-libraries '("c"))
32   (warn "Unable to load zlib"))
33   
34 (unless (uffi:load-foreign-library 
35          (uffi:find-foreign-library
36           '(#+(or 64bit x86-64) "uffi-c-test64" "uffi-c-test") 
37           (list (pathname-directory *load-truename*)
38                 "/usr/lib/uffi/"
39                 "/home/kevin/debian/src/uffi/tests/"))
40          :supporting-libraries '("c")
41          :module "uffi_tests")
42   (warn "Unable to load uffi-c-test library"))
43