mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[devel] Added a hint to try CPP=/bin/cpp if "cpp -E" fails in
scripts/pnglibconf.mak and in contrib/pngminim/*/makefile and to try "STRIP=touch" if strip is missing, eg., on SunOS 5.10
This commit is contained in:
parent
f3dd1cc51e
commit
eceff8b3c3
22
ANNOUNCE
22
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.5.2rc01 - March 19, 2011
|
Libpng 1.5.2rc02 - March 19, 2011
|
||||||
|
|
||||||
This is not intended to be a public release. It will be replaced
|
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.
|
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
|
Source files with LF line endings (for Unix/Linux) and with a
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
1.5.2rc01.tar.xz (LZMA-compressed, recommended)
|
1.5.2rc02.tar.xz (LZMA-compressed, recommended)
|
||||||
1.5.2rc01.tar.gz
|
1.5.2rc02.tar.gz
|
||||||
1.5.2rc01.tar.bz2
|
1.5.2rc02.tar.bz2
|
||||||
|
|
||||||
Source files with CRLF line endings (for Windows), without the
|
Source files with CRLF line endings (for Windows), without the
|
||||||
"configure" script
|
"configure" script
|
||||||
|
|
||||||
lp152r01.7z (LZMA-compressed, recommended)
|
lp152r02.7z (LZMA-compressed, recommended)
|
||||||
lp152r01.zip
|
lp152r02.zip
|
||||||
|
|
||||||
Other information:
|
Other information:
|
||||||
|
|
||||||
1.5.2rc01-README.txt
|
1.5.2rc02-README.txt
|
||||||
1.5.2rc01-LICENSE.txt
|
1.5.2rc02-LICENSE.txt
|
||||||
|
|
||||||
Changes since the last public release (1.5.1):
|
Changes since the last public release (1.5.1):
|
||||||
|
|
||||||
@ -55,6 +55,12 @@ Version 1.5.2beta03 [March 3, 2011]
|
|||||||
|
|
||||||
Version 1.5.2rc01 [March 19, 2011]
|
Version 1.5.2rc01 [March 19, 2011]
|
||||||
Define remaining attributes to blank when MSC_VER<1300.
|
Define remaining attributes to blank when MSC_VER<1300.
|
||||||
|
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
||||||
|
|
||||||
|
Version 1.5.2rc02 [March 19, 2011]
|
||||||
|
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
||||||
|
and in contrib/pngminim/*/makefile and to try "STRIP=touch" if strip is
|
||||||
|
missing, eg., on SunOS 5.10
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
6
CHANGES
6
CHANGES
@ -3271,6 +3271,12 @@ Version 1.5.2beta03 [March 3, 2011]
|
|||||||
|
|
||||||
Version 1.5.2rc01 [March 19, 2011]
|
Version 1.5.2rc01 [March 19, 2011]
|
||||||
Define remaining attributes to blank when MSC_VER<1300.
|
Define remaining attributes to blank when MSC_VER<1300.
|
||||||
|
ifdef out mask arrays in pngread.c when interlacing is not supported.
|
||||||
|
|
||||||
|
Version 1.5.2rc02 [March 19, 2011]
|
||||||
|
Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
|
||||||
|
and in contrib/pngminim/*/makefile and to try "STRIP=touch" if strip is
|
||||||
|
missing, eg., on SunOS 5.10
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -6,9 +6,15 @@ CC=gcc
|
|||||||
LD=$(CC)
|
LD=$(CC)
|
||||||
STRIP=strip
|
STRIP=strip
|
||||||
|
|
||||||
|
#if strip fails try
|
||||||
|
# make STRIP=touch
|
||||||
|
|
||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
|
|
||||||
|
# If cpp fails try
|
||||||
|
# make CPP=/lib/cpp
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
COPY=cp
|
COPY=cp
|
||||||
|
|
||||||
|
@ -9,6 +9,12 @@ STRIP=strip
|
|||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
|
|
||||||
|
# If cpp fails try
|
||||||
|
# make CPP=/lib/cpp
|
||||||
|
|
||||||
|
# If strip fails try
|
||||||
|
# make STRIP=touch
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
COPY=cp
|
COPY=cp
|
||||||
|
|
||||||
|
@ -9,6 +9,12 @@ STRIP=strip
|
|||||||
# If awk fails try
|
# If awk fails try
|
||||||
# make AWK=nawk
|
# make AWK=nawk
|
||||||
|
|
||||||
|
# If cpp fails try
|
||||||
|
# make CPP=/lib/cpp
|
||||||
|
|
||||||
|
# If strip fails try
|
||||||
|
# make STRIP=touch
|
||||||
|
|
||||||
RM=rm -f
|
RM=rm -f
|
||||||
COPY=cp
|
COPY=cp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user