Fix for 0MQ 2.0.7.
[julia.git] / julia.asd
blobb15c62dd47edad8f396ec8302e0ff494900f174b
1 ;; Copyright (c) 2010 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is part of Julia.
4 ;;
5 ;; Julia is free software; you can redistribute it and/or modify it under
6 ;; the terms of the Lesser GNU General Public License as published by
7 ;; the Free Software Foundation; either version 3 of the License, or
8 ;; (at your option) any later version.
9 ;;
10 ;; 0MQ is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;; Lesser GNU General Public License for more details.
15 ;; You should have received a copy of the Lesser GNU General Public License
16 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 (cl:eval-when (:load-toplevel :execute)
19   (asdf:operate 'asdf:load-op :zeromq)
20   (asdf:operate 'asdf:load-op :local-time))
22 (defpackage #:julia-asd
23   (:use :cl :asdf))
25 (in-package #:julia-asd)
27 (defsystem julia
28   :name "julia"
29   :version "0.1"
30   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
31   :licence "LGPLv3"
32   :description "Julia distributed whatever"
33   :serial t
34   :components ((:file "package")
35                (:file "utils")
36                (:file "dispatchers")
37                (:file "julia")))