1 Copyright 2008 Sun Microsystems, Inc. All rights reserved. 2 Use is subject to license terms. 3 4 For the avoidance of doubt, except that if any license choice other 5 than GPL or LGPL is available it will apply instead, Sun elects to 6 use only the General Public License version 2 (GPLv2) at this time 7 for any software where a choice of GPL license versions is made 8 available with the language indicating that GPLv2 or any later 9 version may be used, or where a choice of which version of the GPL 10 is applied is otherwise unspecified. 11 12 -------------------------------------------------------------------- 13 14 15 16 Copyright (C) 2000, 2001 Eazel, Inc. 17 Copyright (C) 2002 Alexander Larsson. 18 Copyright (C) 2004,2005 Bastien Nocera <hadess (a] hadess.net> 19 Copyright (C) 1984-2006 Free Software Foundation, Inc. 20 Copyright (C) 2006-2007 Hubert Figuiere <hub (a] figuiere.net> 21 Copyright (C) 1995 Spencer Kimball and Peter Mattis 22 Copyright (C) 1995-1997, Thomas G. Lane. 23 Copyright (C) 1997, Thomas G. Lane. 24 Copyright (C) 1999 Michael Zucchi 25 Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb (a] redhat.com> 26 Copyright (C) 2004-2005 William Jon McCann <mccann (a] jhu.edu> 27 Copyright 2001 Lutz Mller <lutz (a] users.sourceforge.net> 28 29 Author: Federico Mena-Quintero <federico (a] gnu.org> 30 Author: Bastien Nocera <hadess (a] hadess.net> 31 32 -------------------------------------------------------------------- 33 34 35 This program is free software; you can redistribute it and/or modify 36 it under the terms of the GNU General Public License as published by 37 the Free Software Foundation; either version 2, or (at your option) 38 any later version. 39 40 This program is distributed in the hope that it will be useful, 41 but WITHOUT ANY WARRANTY; without even the implied warranty of 42 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 43 GNU General Public License for more details. 44 45 You should have received a copy of the GNU General Public License 46 along with this program; if not, write to the Free Software 47 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 48 Foundation, Inc., 51 Franklin Street, Fifth Floor, 49 Boston, MA 02110-1301, USA. 50 51 As a special exception, you may create a larger work that contains 52 part or all of the Bison parser skeleton and distribute that work 53 under terms of your choice, so long as that work isn't itself a 54 parser generator using the skeleton or a modified version thereof 55 as a parser skeleton. Alternatively, if you modify or redistribute 56 the parser skeleton itself, you may (at your option) remove this 57 special exception, which will cause the skeleton and the resulting 58 Bison output files to be licensed under the GNU General Public 59 License without this special exception. 60 61 This special exception was added by the Free Software Foundation in 62 version 2.2 of Bison. 63 64 C LALR(1) parser skeleton written by Richard Stallman, by 65 simplifying the original so-called "semantic" parser. 66 67 All symbols defined below should begin with yy or YY, to avoid 68 infringing on user name space. This should be done even for local 69 variables, as they might otherwise be expanded by user macros. 70 There are some unavoidable exceptions within include files to 71 define necessary library symbols; they are noted "INFRINGES ON 72 USER NAME SPACE" below. 73 74 75 76 77 Some bits are based upon the gimp source code, the original copyright 78 note follows: 79 80 The GIMP -- an image manipulation program 81 82 Base on gs-fade.c from gnome-screensaver: 83 84 85 This program is free software; you can redistribute it and/or modify 86 it under the terms of the GNU General Public License as published by 87 the Free Software Foundation; either version 2 of the License, or 88 (at your option) any later version. 89 90 This program is distributed in the hope that it will be useful, 91 but WITHOUT ANY WARRANTY; without even the implied warranty of 92 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 93 GNU General Public License for more details. 94 95 You should have received a copy of the GNU General Public License 96 along with this program; if not, write to the Free Software 97 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 98 99 100 The jpeg saver is based upon the gdk-pixbuf library, which has the 101 following copyright note : 102 103 104 Progressive loading code Copyright (C) 1999 Red Hat, Inc. 105 106 Authors: Michael Zucchi <zucchi (a] zedzone.mmc.com.au> 107 Federico Mena-Quintero <federico (a] gimp.org> 108 Michael Fulbright <drmike (a] redhat.com> 109 110 111 Portions of the codes are based upon file jpegtran.c from the libjpeg package, 112 original copyright note follows: 113 114 jpegtran.c 115 116 This file is part of the Independent JPEG Group's software. 117 For conditions of distribution and use, see the accompanying README file. 118 119 This file contains a command-line user interface for JPEG transcoding. 120 It is very similar to cjpeg.c, but provides lossless transcoding between 121 different JPEG file formats. It also provides some lossless and sort-of- 122 lossless transformations of JPEG data. 123 124 125 Portions of the codes are based upon file transupp.h from the libjpeg package, 126 original copyright note follows: 127 128 transupp.h 129 130 This file is part of the Independent JPEG Group's software. 131 For conditions of distribution and use, see the accompanying README file. 132 133 This file contains declarations for image transformation routines and 134 other utility code used by the jpegtran sample application. These are 135 NOT part of the core JPEG library. But we keep these routines separate 136 from jpegtran.c to ease the task of maintaining jpegtran-like programs 137 that have other user interfaces. 138 139 NOTE: all the routines declared here have very specific requirements 140 about when they are to be executed during the reading and writing of the 141 source and destination files. See the comments in transupp.c, or see 142 jpegtran.c for an example of correct usage. 143 144 145