summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@acm.org>2011-12-07 20:35:48 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2011-12-07 20:35:48 -0600
commitd61b42c81d9d6f0905039ccc66870b2a27eafdd9 (patch)
treeb38a11e890738fee2a5a37585cd0c4fbe485b976
parent8fd9c166425f0143a80078ca0056d35aead162d4 (diff)
downloadlibpng-d61b42c81d9d6f0905039ccc66870b2a27eafdd9.tar.gz
[libpng15] Updated CMakeLists.txt to account for the relocation of pngvalid.c
-rw-r--r--ANNOUNCE19
-rw-r--r--CHANGES3
-rw-r--r--CMakeLists.txt4
3 files changed, 16 insertions, 10 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 813e0010d..913e84168 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -1,5 +1,5 @@
-Libpng 1.5.7rc02 - December 5, 2011
+Libpng 1.5.7rc03 - December 8, 2011
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.
@@ -9,20 +9,20 @@ Files available for download:
Source files with LF line endings (for Unix/Linux) and with a
"configure" script
- 1.5.7rc02.tar.xz (LZMA-compressed, recommended)
- 1.5.7rc02.tar.gz
- 1.5.7rc02.tar.bz2
+ 1.5.7rc03.tar.xz (LZMA-compressed, recommended)
+ 1.5.7rc03.tar.gz
+ 1.5.7rc03.tar.bz2
Source files with CRLF line endings (for Windows), without the
"configure" script
- lp157r02.7z (LZMA-compressed, recommended)
- lp157r02.zip
+ lp157r03.7z (LZMA-compressed, recommended)
+ lp157r03.zip
Other information:
- 1.5.7rc02-README.txt
- 1.5.7rc02-LICENSE.txt
+ 1.5.7rc03-README.txt
+ 1.5.7rc03-LICENSE.txt
Changes since the last public release (1.5.6):
@@ -124,6 +124,9 @@ Version 1.5.7rc02 [December 5, 2011]
as in libpng-1.5.4.
Put CRLF line endings in the owatcom project files.
+Version 1.5.7rc03 [December 8, 2011]
+ Updated CMakeLists.txt to account for the relocation of pngvalid.c
+
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
(subscription required; visit
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
diff --git a/CHANGES b/CHANGES
index cc141e366..890f0cb49 100644
--- a/CHANGES
+++ b/CHANGES
@@ -3769,6 +3769,9 @@ Version 1.5.7rc02 [December 5, 2011]
as in libpng-1.5.4.
Put CRLF line endings in the owatcom project files.
+Version 1.5.7rc03 [December 8, 2011]
+ Updated CMakeLists.txt to account for the relocation of pngvalid.c
+
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit
https://lists.sourceforge.net/lists/listinfo/png-mng-implement
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f121c3077..e37afd1ff 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -121,7 +121,7 @@ set(pngtest_sources
pngtest.c
)
set(pngvalid_sources
- pngvalid.c
+ contrib/libtests/pngvalid.c
)
# SOME NEEDED DEFINITIONS
@@ -229,7 +229,7 @@ endif(NOT WIN32 OR CYGWIN OR MINGW)
# SET UP LINKS
if(PNG_SHARED)
set_target_properties(${PNG_LIB_NAME} PROPERTIES
-# VERSION 15.${PNGLIB_RELEASE}.1.5.7rc02
+# VERSION 15.${PNGLIB_RELEASE}.1.5.7rc03
VERSION 15.${PNGLIB_RELEASE}.0
SOVERSION 15
CLEAN_DIRECT_OUTPUT 1)