|
| 1 | +The following is the license that applies to this copy of the Berkeley DB |
| 2 | +software. For a license to use the Berkeley DB software under conditions |
| 3 | +other than those described here, or to purchase support for this software, |
| 4 | +please contact Oracle at [email protected]. |
| 5 | + |
| 6 | +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= |
| 7 | +/* |
| 8 | + * Copyright (c) 1990, 2013 Oracle and/or its affiliates. All rights reserved. |
| 9 | + * |
| 10 | + * Redistribution and use in source and binary forms, with or without |
| 11 | + * modification, are permitted provided that the following conditions |
| 12 | + * are met: |
| 13 | + * 1. Redistributions of source code must retain the above copyright |
| 14 | + * notice, this list of conditions and the following disclaimer. |
| 15 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | + * notice, this list of conditions and the following disclaimer in the |
| 17 | + * documentation and/or other materials provided with the distribution. |
| 18 | + * 3. Redistributions in any form must be accompanied by information on |
| 19 | + * how to obtain complete source code for the DB software and any |
| 20 | + * accompanying software that uses the DB software. The source code |
| 21 | + * must either be included in the distribution or be available for no |
| 22 | + * more than the cost of distribution plus a nominal fee, and must be |
| 23 | + * freely redistributable under reasonable conditions. For an |
| 24 | + * executable file, complete source code means the source code for all |
| 25 | + * modules it contains. It does not include source code for modules or |
| 26 | + * files that typically accompany the major components of the operating |
| 27 | + * system on which the executable file runs. |
| 28 | + * |
| 29 | + * THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR |
| 30 | + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 31 | + * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR |
| 32 | + * NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE |
| 33 | + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 34 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 35 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 36 | + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 37 | + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 38 | + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 39 | + * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 40 | + */ |
| 41 | +/* |
| 42 | + * Copyright (c) 1990, 1993, 1994, 1995 |
| 43 | + * The Regents of the University of California. All rights reserved. |
| 44 | + * |
| 45 | + * Redistribution and use in source and binary forms, with or without |
| 46 | + * modification, are permitted provided that the following conditions |
| 47 | + * are met: |
| 48 | + * 1. Redistributions of source code must retain the above copyright |
| 49 | + * notice, this list of conditions and the following disclaimer. |
| 50 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 51 | + * notice, this list of conditions and the following disclaimer in the |
| 52 | + * documentation and/or other materials provided with the distribution. |
| 53 | + * 3. Neither the name of the University nor the names of its contributors |
| 54 | + * may be used to endorse or promote products derived from this software |
| 55 | + * without specific prior written permission. |
| 56 | + * |
| 57 | + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 58 | + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 59 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 60 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 61 | + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 62 | + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 63 | + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 64 | + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 65 | + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 66 | + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 67 | + * SUCH DAMAGE. |
| 68 | + */ |
| 69 | +/* |
| 70 | + * Copyright (c) 1995, 1996 |
| 71 | + * The President and Fellows of Harvard University. All rights reserved. |
| 72 | + * |
| 73 | + * Redistribution and use in source and binary forms, with or without |
| 74 | + * modification, are permitted provided that the following conditions |
| 75 | + * are met: |
| 76 | + * 1. Redistributions of source code must retain the above copyright |
| 77 | + * notice, this list of conditions and the following disclaimer. |
| 78 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 79 | + * notice, this list of conditions and the following disclaimer in the |
| 80 | + * documentation and/or other materials provided with the distribution. |
| 81 | + * 3. Neither the name of the University nor the names of its contributors |
| 82 | + * may be used to endorse or promote products derived from this software |
| 83 | + * without specific prior written permission. |
| 84 | + * |
| 85 | + * THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND |
| 86 | + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 87 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 88 | + * ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE |
| 89 | + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 90 | + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 91 | + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 92 | + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 93 | + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 94 | + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 95 | + * SUCH DAMAGE. |
| 96 | + */ |
| 97 | +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= |
| 98 | +/*** |
| 99 | + * ASM: a very small and fast Java bytecode manipulation framework |
| 100 | + * Copyright (c) 2000-2005 INRIA, France Telecom |
| 101 | + * All rights reserved. |
| 102 | + * |
| 103 | + * Redistribution and use in source and binary forms, with or without |
| 104 | + * modification, are permitted provided that the following conditions |
| 105 | + * are met: |
| 106 | + * 1. Redistributions of source code must retain the above copyright |
| 107 | + * notice, this list of conditions and the following disclaimer. |
| 108 | + * 2. Redistributions in binary form must reproduce the above copyright |
| 109 | + * notice, this list of conditions and the following disclaimer in the |
| 110 | + * documentation and/or other materials provided with the distribution. |
| 111 | + * 3. Neither the name of the copyright holders nor the names of its |
| 112 | + * contributors may be used to endorse or promote products derived from |
| 113 | + * this software without specific prior written permission. |
| 114 | + * |
| 115 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 116 | + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 117 | + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 118 | + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 119 | + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 120 | + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 121 | + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 122 | + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 123 | + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 124 | + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 125 | + * THE POSSIBILITY OF SUCH DAMAGE. |
| 126 | + */ |
0 commit comments