[libpng17] Disassembled the version number in scripts/options.awk (necessary

for building on SunOs)
This commit is contained in:
John Bowler 2012-12-17 23:36:08 -06:00 committed by Glenn Randers-Pehrson
parent fbbbc620b8
commit b940e5dc5d
3 changed files with 5 additions and 0 deletions

View File

@ -87,6 +87,8 @@ Version 1.7.0alpha03 [December 18, 2012]
png_fixed and the gamma code specific version of the same to avoid floor(), png_fixed and the gamma code specific version of the same to avoid floor(),
which may be a library function (not an intrinsic). Removed unused #if 0 which may be a library function (not an intrinsic). Removed unused #if 0
code. code.
Disassembled the version number in scripts/options.awk (necessary for
building on SunOs)
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

View File

@ -4372,6 +4372,8 @@ Version 1.7.0alpha03 [December 18, 2012]
png_fixed and the gamma code specific version of the same to avoid floor(), png_fixed and the gamma code specific version of the same to avoid floor(),
which may be a library function (not an intrinsic). Removed unused #if 0 which may be a library function (not an intrinsic). Removed unused #if 0
code. code.
Disassembled the version number in scripts/options.awk (necessary for
building on SunOs)
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

View File

@ -102,6 +102,7 @@ pre && version == "search" && version_file != FILENAME{
pre && version == "search" && $0 ~ /^ \* libpng version/{ pre && version == "search" && $0 ~ /^ \* libpng version/{
version = substr($0, 4) version = substr($0, 4)
gsub(/\./, " PNG_JOIN . PNG_JOIN", version)
print "version =", version >out print "version =", version >out
next next
} }