Fix end-of-buffer error on merge-octet.
[salza2.git] / salza2.asd
blob0e9b12e631159dca8bc70070cfa25df31678ea79
1 ;;;
2 ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved
3 ;;;
4 ;;; Redistribution and use in source and binary forms, with or without
5 ;;; modification, are permitted provided that the following conditions
6 ;;; are met:
7 ;;;
8 ;;;   * Redistributions of source code must retain the above copyright
9 ;;;     notice, this list of conditions and the following disclaimer.
10 ;;;
11 ;;;   * Redistributions in binary form must reproduce the above
12 ;;;     copyright notice, this list of conditions and the following
13 ;;;     disclaimer in the documentation and/or other materials
14 ;;;     provided with the distribution.
15 ;;;
16 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 ;;;
29 (asdf:defsystem #:salza2
30   :version "2.0.2"
31   :components ((:file "package")
32                (:file "reset"
33                       :depends-on ("package"))
34                (:file "specials"
35                       :depends-on ("package"))
36                (:file "types"
37                       :depends-on ("package"
38                                    "specials"))
39                (:file "checksum"
40                       :depends-on ("package"
41                                    "reset"))
42                (:file "adler32"
43                       :depends-on ("checksum"))
44                (:file "crc32"
45                       :depends-on ("checksum"))
46                (:file "chains"
47                       :depends-on ("package"
48                                    "specials"))
49                (:file "bitstream"
50                       :depends-on ("package"
51                                    "reset"))
52                (:file "matches"
53                       :depends-on ("package"
54                                    "types"))
55                (:file "compress"
56                       :depends-on ("types"
57                                    "matches"))
58                (:file "huffman"
59                       :depends-on ("package"))
60                (:file "closures"
61                       :depends-on ("huffman"
62                                    "bitstream"))
63                (:file "compressor"
64                       :depends-on ("package"
65                                    "closures"
66                                    "utilities"
67                                    "specials"
68                                    "bitstream"
69                                    "reset"))
70                (:file "utilities"
71                       :depends-on ("package"))
72                (:file "zlib"
73                       :depends-on ("package"
74                                    "adler32"
75                                    "reset"
76                                    "compressor"))
77                (:file "gzip"
78                       :depends-on ("package"
79                                    "crc32"
80                                    "reset"
81                                    "compressor"))
82                (:file "user"
83                       :depends-on ("package"
84                                    "compressor"
85                                    "zlib"
86                                    "gzip"))))