-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reviewed-by: phh Backport-of: 2c692aa3567fff446b1a3263023077d8b4236945
- Loading branch information
Showing
31 changed files
with
2,003 additions
and
591 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,107 @@ | ||
## Little Color Management System (LCMS) v2.12 | ||
## Little Color Management System (LCMS) v2.14 | ||
|
||
### LCMS License | ||
<pre> | ||
|
||
Little Color Management System | ||
Copyright (c) 1998-2020 Marti Maria Saguer | ||
README.1ST file information | ||
|
||
LittleCMS core is released under MIT License | ||
|
||
--------------------------------- | ||
|
||
Little CMS | ||
Copyright (c) 1998-2022 Marti Maria Saguer | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the Software | ||
is furnished to do so, subject to the following conditions: | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject | ||
to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
--------------------------------- | ||
|
||
The below license applies to the following files: | ||
liblcms/cmssm.c | ||
|
||
Copyright 2001, softSurfer (www.softsurfer.com) | ||
|
||
This code may be freely used and modified for any purpose | ||
providing that this copyright notice is included with it. | ||
SoftSurfer makes no warranty for this code, and cannot be held | ||
liable for any real or imagined damage resulting from its use. | ||
Users of this code must verify correctness for their application. | ||
|
||
|
||
</pre> | ||
|
||
### AUTHORS File Information | ||
``` | ||
Main Author | ||
------------ | ||
Marti Maria | ||
Contributors | ||
------------ | ||
Bob Friesenhahn | ||
Kai-Uwe Behrmann | ||
Stuart Nixon | ||
Jordi Vilar | ||
Richard Hughes | ||
Auke Nauta | ||
Chris Evans (Google) | ||
Lorenzo Ridolfi | ||
Robin Watts (Artifex) | ||
Shawn Pedersen | ||
Andrew Brygin | ||
Samuli Suominen | ||
Florian Hˆch | ||
Aurelien Jarno | ||
Claudiu Cebuc | ||
Michael Vhrel (Artifex) | ||
Michal Cihar | ||
Daniel Kaneider | ||
Mateusz Jurczyk (Google) | ||
Paul Miller | ||
SÈbastien LÈon | ||
Christian Schmitz | ||
XhmikosR | ||
Stanislav Brabec (SuSe) | ||
Leonhard Gruenschloss (Google) | ||
Patrick Noffke | ||
Christopher James Halse Rogers | ||
John Hein | ||
Thomas Weber (Debian) | ||
Mark Allen | ||
Noel Carboni | ||
Sergei Trofimovic | ||
Philipp Knechtges | ||
Special Thanks | ||
-------------- | ||
Artifex software | ||
AlienSkin software | ||
Jan Morovic | ||
Jos Vernon (WebSupergoo) | ||
Harald Schneider (Maxon) | ||
Christian Albrecht | ||
Dimitrios Anastassakis | ||
Lemke Software | ||
Tim Zaman | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Tips and tasks when updating LittleCMS sources to a newer version. | ||
|
||
Download and unzip latest release from https://sourceforge.net/projects/lcms/files/ | ||
Replace files in src/java.desktop/share/native/liblcms with files from unzipped src and include folders | ||
Replace is important because the lcms sources here are just the subset needed by JDK. | ||
This is deliberate, so when updating be sure to import only the same files. | ||
If a file has been removed from upstream you will notice it during the copy. | ||
It should then be removed from the JDK sources. | ||
If a new file is needed then the build will fail. Manually copy that in. | ||
|
||
Some re-editing of these updated files will be needed. | ||
Use "expand" and "sed" to remove tabs and trailing white space from the imported files. | ||
Re-apply the GPL headers used by the JDK. If done correctly these should then not | ||
show up in the PR diff. | ||
|
||
Update src/java.desktop/share/legal/lcms.md per the current license/copyrights/attributions etc. | ||
|
||
Build on all platforms. | ||
If there are compiler warnings causing build failures, update the disabled warnings in | ||
make/modules/java.desktop/lib/Awt2dLibraries.gmk | ||
Run all automated client tests on all platforms. | ||
Also run J2Ddemo and pay particular attention to the "color" tab. | ||
Visually verify the color transforms against the same with the current/previous JDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
f2c3f35
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues