From 2a28a4320a520bd3556f9038a6e5ea6fad8f88c8 Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Fri, 29 Jan 2016 09:14:41 -0600 Subject: [PATCH] [libpng16] Update copyright information in cmake scripts. --- ANNOUNCE | 6 +++--- CHANGES | 4 ++-- CMakeLists.txt | 6 +++++- scripts/genchk.cmake.in | 8 ++++++++ scripts/genout.cmake.in | 8 ++++++++ scripts/gensrc.cmake.in | 8 ++++++++ scripts/test.cmake.in | 9 +++++++++ 7 files changed, 43 insertions(+), 6 deletions(-) diff --git a/ANNOUNCE b/ANNOUNCE index 3e9a7dc84..dc081bd8b 100644 --- a/ANNOUNCE +++ b/ANNOUNCE @@ -1,4 +1,4 @@ -Libpng 1.6.22beta02 - January 28, 2016 +Libpng 1.6.22beta02 - January 29, 2016 This is not intended to be a public release. It will be replaced within a few weeks by a public version or by another test version. @@ -40,13 +40,13 @@ Version 1.6.22beta01 [January 23, 2016] less than 4GByte and image row size (stride) to less than 2GByte. Revised workaround for false-positive Coverity issue in pngvalid.c. -Version 1.6.22beta02 [January 28, 2016] +Version 1.6.22beta02 [January 29, 2016] Only use exit(77) in configure builds. Corrected error in PNG_IMAGE_PNG_SIZE_MAX. This new macro underreported the palette size because it failed to take into account that the memory palette has to be expanded to full RGB when it is written to PNG. Updated CMakeLists.txt, added supporting scripts/gen*.cmake.in - and test.cmake.in + and test.cmake.in (Roger Leigh). Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/CHANGES b/CHANGES index 467180ae1..7a2dfb81b 100644 --- a/CHANGES +++ b/CHANGES @@ -5499,13 +5499,13 @@ Version 1.6.22beta01 [January 23, 2016] less than 4GByte and image row size (stride) to less than 2GByte. Revised workaround for false-positive Coverity issue in pngvalid.c. -Version 1.6.22beta02 [January 28, 2016] +Version 1.6.22beta02 [January 29, 2016] Only use exit(77) in configure builds. Corrected error in PNG_IMAGE_PNG_SIZE_MAX. This new macro underreported the palette size because it failed to take into account that the memory palette has to be expanded to full RGB when it is written to PNG. Updated CMakeLists.txt, added supporting scripts/gen*.cmake.in - and test.cmake.in + and test.cmake.in (Roger Leigh). Send comments/corrections/commendations to png-mng-implement at lists.sf.net (subscription required; visit diff --git a/CMakeLists.txt b/CMakeLists.txt index f6ff11645..c031e288b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,10 @@ # CMakeLists.txt -# Copyright (C) 2007-2015 Glenn Randers-Pehrson +# Copyright (C) 2007,2009-2016 Glenn Randers-Pehrson +# Written by Christian Ehrlicher, 2007 +# Revised by Roger Lowman, 2009-2010 +# Revised by Clifford Yapp, 2011-2012 +# Revised by Roger Leigh, 2016 # This code is released under the libpng license. # For conditions of distribution and use, see the disclaimer diff --git a/scripts/genchk.cmake.in b/scripts/genchk.cmake.in index 909d1c950..ab3b9d746 100644 --- a/scripts/genchk.cmake.in +++ b/scripts/genchk.cmake.in @@ -1,5 +1,13 @@ +# genchk.cmake.in # Generate .chk from .out with awk (generic), based upon the automake logic. +# Copyright (C) 2016 Glenn Randers-Pehrson +# Written by Roger Leigh, 2016 + +# This code is released under the libpng license. +# For conditions of distribution and use, see the disclaimer +# and license in png.h + # Variables substituted from CMakeLists.txt set(SRCDIR "@CMAKE_CURRENT_SOURCE_DIR@") diff --git a/scripts/genout.cmake.in b/scripts/genout.cmake.in index 1f0277d52..5851c8f13 100644 --- a/scripts/genout.cmake.in +++ b/scripts/genout.cmake.in @@ -1,5 +1,13 @@ +# genout.cmake.in # Generate .out from .c with awk (generic), based upon the automake logic. +# Copyright (C) 2016 Glenn Randers-Pehrson +# Written by Roger Leigh, 2016 + +# This code is released under the libpng license. +# For conditions of distribution and use, see the disclaimer +# and license in png.h + # Variables substituted from CMakeLists.txt set(SRCDIR "@CMAKE_CURRENT_SOURCE_DIR@") set(BINDIR "@CMAKE_CURRENT_BINARY_DIR@") diff --git a/scripts/gensrc.cmake.in b/scripts/gensrc.cmake.in index 04c761c8b..f28a62266 100644 --- a/scripts/gensrc.cmake.in +++ b/scripts/gensrc.cmake.in @@ -1,5 +1,13 @@ +# gensrc.cmake.in # Generate source files with awk, based upon the automake logic. +# Copyright (C) 2016 Glenn Randers-Pehrson +# Written by Roger Leigh, 2016 + +# This code is released under the libpng license. +# For conditions of distribution and use, see the disclaimer +# and license in png.h + # Variables substituted from CMakeLists.txt set(SRCDIR "@CMAKE_CURRENT_SOURCE_DIR@") set(BINDIR "@CMAKE_CURRENT_BINARY_DIR@") diff --git a/scripts/test.cmake.in b/scripts/test.cmake.in index f3849dfd6..fa6a889bb 100644 --- a/scripts/test.cmake.in +++ b/scripts/test.cmake.in @@ -1,3 +1,12 @@ +# test.cmake.in + +# Copyright (C) 2016 Glenn Randers-Pehrson +# Written by Roger Leigh, 2016 + +# This code is released under the libpng license. +# For conditions of distribution and use, see the disclaimer +# and license in png.h + set(TEST_OPTIONS "@TEST_OPTIONS@") set(TEST_FILES "@TEST_FILES@")