lisp-libvirt.lisp 252 B

1234567891011
  1. ;;;; lisp-libvirt.lisp
  2. (in-package #:lisp-libvirt)
  3. ;;; "lisp-libvirt" goes here. Hacks and glory await!
  4. (define-foreign-library libvirt
  5. (:unix (:or "libvirt.so.0" "libvirt.so.0.1002.18"))
  6. (t (:default "libvirt")))
  7. (use-foreign-library libvirt)