Home | History | Annotate | Download | only in erlang
      1 Copyright Ericsson Telecom AB 1998
      2 
      3 The copyright to the computer program herein is the
      4 property of Ericsson Telecom AB, Sweden. The program
      5 may be used and/or copied only with the written permission
      6 from Ericsson Telecom AB, or in accordance with the terms
      7 and conditions stipulated in the agreement/contract under
      8 which the program has been supplied.
      9 
     10 Parts of this distribution was created using copyrighted material
     11 with the copyright notices included below.
     12 
     13 ---------------------------------------------------------------------------
     14 [Tcl/Tk]
     15 
     16 This software is copyrighted by the Regents of the University of
     17 California, Sun Microsystems, Inc., and other parties.  The following
     18 terms apply to all files associated with the software unless explicitly
     19 disclaimed in individual files.
     20 
     21 The authors hereby grant permission to use, copy, modify, distribute,
     22 and license this software and its documentation for any purpose, provided
     23 that existing copyright notices are retained in all copies and that this
     24 notice is included verbatim in any distributions. No written agreement,
     25 license, or royalty fee is required for any of the authorized uses.
     26 Modifications to this software may be copyrighted by their authors
     27 and need not follow the licensing terms described here, provided that
     28 the new terms are clearly indicated on the first page of each file where
     29 they apply.
     30 
     31 IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
     32 FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
     33 ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
     34 DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
     35 POSSIBILITY OF SUCH DAMAGE.
     36 
     37 THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
     38 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
     39 FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.  THIS SOFTWARE
     40 IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
     41 NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
     42 MODIFICATIONS.
     43 
     44 GOVERNMENT USE: If you are acquiring this software on behalf of the
     45 U.S. government, the Government shall have only "Restricted Rights"
     46 in the software and related documentation as defined in the Federal 
     47 Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2).  If you
     48 are acquiring the software on behalf of the Department of Defense, the
     49 software shall be classified as "Commercial Computer Software" and the
     50 Government shall have only "Restricted Rights" as defined in Clause
     51 252.227-7013 (c) (1) of DFARs.  Notwithstanding the foregoing, the
     52 authors grant the U.S. Government and others acting in its behalf
     53 permission to use and distribute the software in accordance with the
     54 terms specified in this license.
     55 
     56 ---------------------------------------------------------------------------
     57 [Misc C library code]
     58 
     59 	/*
     60 	 * Copyright (c) 1985, 1988 Regents of the University of California.
     61 	 * All rights reserved.
     62 	 *
     63 	 * Redistribution and use in source and binary forms are permitted
     64 	 * provided that the above copyright notice and this paragraph are
     65 	 * duplicated in all such forms and that any documentation,
     66 	 * advertising materials, and other materials related to such
     67 	 * distribution and use acknowledge that the software was developed
     68 	 * by the University of California, Berkeley.  The name of the
     69 	 * University may not be used to endorse or promote products derived
     70 	 * from this software without specific prior written permission.
     71 	 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
     72 	 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
     73 	 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     74 	 */
     75 
     76 ---------------------------------------------------------------------------
     77 [zlib]
     78 /* zlib.h -- interface of the 'zlib' general purpose compression library
     79   version 1.0.4, Jul 24th, 1996.
     80 
     81   Copyright (C) 1995-1996 Jean-loup Gailly and Mark Adler
     82 	 
     83   This software is provided 'as-is', without any express or implied
     84   warranty.  In no event will the authors be held liable for any damages
     85   arising from the use of this software.
     86 	 
     87   Permission is granted to anyone to use this software for any purpose,
     88   including commercial applications, and to alter it and redistribute it
     89   freely, subject to the following restrictions:
     90 	 
     91   1. The origin of this software must not be misrepresented; you must not
     92      claim that you wrote the original software. If you use this software
     93      in a product, an acknowledgment in the product documentation would be
     94      appreciated but is not required.
     95   2. Altered source versions must be plainly marked as such, and must not be
     96      misrepresented as being the original software.
     97   3. This notice may not be removed or altered from any source distribution.
     98 	 
     99   Jean-loup Gailly        Mark Adler
    100   gzip (a] prep.ai.mit.edu    madler (a] alumni.caltech.edu
    101 	 
    102 	 
    103   The data format used by the zlib library is described by RFCs (Request for
    104   Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
    105   (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
    106 */
    107 
    108 ---------------------------------------------------------------------------
    109 [edoc, syntax_tools]
    110 
    111 %% =====================================================================
    112 %% This library is free software; you can redistribute it and/or modify
    113 %% it under the terms of the GNU Lesser General Public License as
    114 %% published by the Free Software Foundation; either version 2 of the
    115 %% License, or (at your option) any later version.
    116 %%
    117 %% This library is distributed in the hope that it will be useful, but
    118 %% WITHOUT ANY WARRANTY; without even the implied warranty of
    119 %% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    120 %% Lesser General Public License for more details.
    121 %%
    122 %% You should have received a copy of the GNU Lesser General Public
    123 %% License along with this library; if not, write to the Free Software
    124 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
    125 %% USA
    126 %%
    127 %% $Id$
    128 %%
    129 %% @copyright 2001-2003 Richard Carlsson
    130 %% @author Richard Carlsson <richardc (a] csd.uu.se>
    131 %%   [http://www.csd.uu.se/~richardc/]
    132 %% @version {@vsn}
    133 %% @end
    134 %% =====================================================================
    135 
    136 ---------------------------------------------------------------------------
    137