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