Changeset 6897


Ignore:
Timestamp:
02/18/12 21:44:47 (15 months ago)
Author:
cristy
Message:
 
Location:
png/trunk
Files:
31 edited

Legend:

Unmodified
Added
Removed
  • png/trunk/ANNOUNCE

    r6705 r6897  
    11 
    2 Libpng 1.5.8 - February 1, 2012 
     2Libpng 1.5.9 - February 18, 2012 
    33 
    44This is a public release of libpng, intended for use in production codes. 
     
    99"configure" script 
    1010 
    11    libpng-1.5.8.tar.xz (LZMA-compressed, recommended) 
    12    libpng-1.5.8.tar.gz 
    13    libpng-1.5.8.tar.bz2 
     11   libpng-1.5.9.tar.xz (LZMA-compressed, recommended) 
     12   libpng-1.5.9.tar.gz 
     13   libpng-1.5.9.tar.bz2 
    1414 
    1515Source files with CRLF line endings (for Windows), without the 
    1616"configure" script 
    1717 
    18    lpng158.7z  (LZMA-compressed, recommended) 
    19    lpng158.zip 
     18   lpng159.7z  (LZMA-compressed, recommended) 
     19   lpng159.zip 
    2020 
    2121Other information: 
    2222 
    23    libpng-1.5.8-README.txt 
    24    libpng-1.5.8-LICENSE.txt 
     23   libpng-1.5.9-README.txt 
     24   libpng-1.5.9-LICENSE.txt 
    2525 
    26 Changes since the last public release (1.5.7): 
    27   Removed '#include config.h"' from contrib/libtests/pngvalid.c.  It's not 
    28     needed and causes trouble for VPATH building. 
    29   Moved AC_MSG_CHECKING([if libraries can be versioned]) later to the proper 
    30     location in configure.ac (Gilles Espinasse). 
    31   Fix bug in pngerror.c: some long warnings were being improperly truncated 
    32     (bug introduced in libpng-1.5.4). 
    33   Fixed Min/GW uninstall to remove libpng.dll.a 
    34   Conditionalize the install rules for MINGW and CYGWIN in CMakeLists.txt 
     26Changes since the last public release (1.5.8): 
     27 
     28  Rebuilt configure scripts in the tar distributions. 
     29  Removed two unused definitions from scripts/pnglibconf.h.prebuilt 
     30  Removed some unused arrays (with #ifdef) from png_read_push_finish_row(). 
     31  Removed tests for no-longer-used *_EMPTY_PLTE_SUPPORTED from pngstruct.h 
     32  Fixed CVE-2011-3026 buffer overrun bug.  Deal more correctly with the test 
     33    on iCCP chunk length. Also removed spurious casts that may hide problems 
     34    on 16-bit systems. 
    3535 
    3636Send comments/corrections/commendations to png-mng-implement at lists.sf.net 
  • png/trunk/CHANGES

    r6705 r6897  
    37833783    location in configure.ac (Gilles Espinasse). 
    37843784  Fix bug in pngerror.c: some long warnings were being improperly truncated 
    3785     (bug introduced in libpng-1.5.3beta05). 
     3785    (CVE-2011-3464, bug introduced in libpng-1.5.3beta05). 
    37863786 
    37873787Version 1.5.8rc01 [January 21, 2012] 
     
    37923792  Conditionalize the install rules for MINGW and CYGWIN in CMakeLists.txt 
    37933793 
     3794Version 1.5.8 [February 1, 2012] 
     3795  No changes. 
     3796 
     3797Version 1.5.9beta01 [February 3, 2012] 
     3798  Rebuilt configure scripts in the tar distributions. 
     3799 
     3800Version 1.5.9beta02 [February 16, 2012] 
     3801  Removed two unused definitions from scripts/pnglibconf.h.prebuilt 
     3802  Removed some unused arrays (with #ifdef) from png_read_push_finish_row(). 
     3803  Removed tests for no-longer-used *_EMPTY_PLTE_SUPPORTED from pngstruct.h 
     3804 
     3805Version 1.5.9rc01 [February 17, 2012] 
     3806  Fixed CVE-2011-3026 buffer overrun bug.  Deal more correctly with the test 
     3807    on iCCP chunk length. Also removed spurious casts that may hide problems 
     3808    on 16-bit systems. 
     3809 
     3810Version 1.5.9 [February 18, 2012] 
     3811  No changes. 
    37943812 
    37953813Send comments/corrections/commendations to png-mng-implement at lists.sf.net 
  • png/trunk/CMakeLists.txt

    r6705 r6897  
    3636set(PNGLIB_MAJOR 1) 
    3737set(PNGLIB_MINOR 5) 
    38 set(PNGLIB_RELEASE 8) 
     38set(PNGLIB_RELEASE 9) 
    3939set(PNGLIB_NAME libpng${PNGLIB_MAJOR}${PNGLIB_MINOR}) 
    4040set(PNGLIB_VERSION ${PNGLIB_MAJOR}.${PNGLIB_MINOR}.${PNGLIB_RELEASE}) 
     
    230230if(PNG_SHARED) 
    231231  set_target_properties(${PNG_LIB_NAME} PROPERTIES 
    232 #   VERSION 15.${PNGLIB_RELEASE}.1.5.8 
     232#   VERSION 15.${PNGLIB_RELEASE}.1.5.9 
    233233    VERSION 15.${PNGLIB_RELEASE}.0 
    234234    SOVERSION 15 
  • png/trunk/LICENSE

    r6705 r6897  
    1111This code is released under the libpng license. 
    1212 
    13 libpng versions 1.2.6, August 15, 2004, through 1.5.8, February 1, 2012, are 
     13libpng versions 1.2.6, August 15, 2004, through 1.5.9, February 18, 2012, are 
    1414Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are 
    1515distributed according to the same disclaimer and license as libpng-1.2.5 
     
    109109Glenn Randers-Pehrson 
    110110glennrp at users.sourceforge.net 
    111 February 1, 2012 
     111February 18, 2012 
  • png/trunk/Makefile.in

    r6705 r6897  
    1 # Makefile.in generated by automake 1.11.1 from Makefile.am. 
     1# Makefile.in generated by automake 1.11.2 from Makefile.am. 
    22# @configure_input@ 
    33 
    44# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 
    5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation, 
    6 # Inc. 
     5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software 
     6# Foundation, Inc. 
    77# This Makefile.in is free software; the Free Software Foundation 
    88# gives unlimited permission to copy and/or distribute it, 
     
    8787  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ 
    8888  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' 
     89am__uninstall_files_from_dir = { \ 
     90  test -z "$$files" \ 
     91    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ 
     92    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ 
     93         $(am__cd) "$$dir" && rm -f $$files; }; \ 
     94  } 
    8995am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \ 
    9096        "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(man5dir)" \ 
     
    176182GZIP_ENV = --best 
    177183distuninstallcheck_listfiles = find . -type f -print 
     184am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ 
     185  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' 
    178186distcleancheck_listfiles = find . -type f -print 
    179187 
     
    394402.SUFFIXES: 
    395403.SUFFIXES: .chk .dfn .out .S .c .lo .o .obj 
    396 am--refresh: 
     404am--refresh: Makefile 
    397405        @: 
    398406$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps) 
     
    430438 
    431439config.h: stamp-h1 
    432         @if test ! -f $@; then \ 
    433           rm -f stamp-h1; \ 
    434           $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ 
    435         else :; fi 
     440        @if test ! -f $@; then rm -f stamp-h1; else :; fi 
     441        @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi 
    436442 
    437443stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status 
     
    528534        files=`for p in $$list; do echo "$$p"; done | \ 
    529535               sed -e 's,.*/,,;$(transform)'`; \ 
    530         test -n "$$list" || exit 0; \ 
    531         echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ 
    532         cd "$(DESTDIR)$(bindir)" && rm -f $$files 
     536        dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) 
    533537 
    534538mostlyclean-compile: 
     
    768772        } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \ 
    769773              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ 
    770         test -z "$$files" || { \ 
    771           echo " ( cd '$(DESTDIR)$(man3dir)' && rm -f" $$files ")"; \ 
    772           cd "$(DESTDIR)$(man3dir)" && rm -f $$files; } 
     774        dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir) 
    773775install-man5: $(dist_man_MANS) 
    774776        @$(NORMAL_INSTALL) 
     
    806808        } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ 
    807809              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ 
    808         test -z "$$files" || { \ 
    809           echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \ 
    810           cd "$(DESTDIR)$(man5dir)" && rm -f $$files; } 
     810        dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir) 
    811811install-pkgconfigDATA: $(pkgconfig_DATA) 
    812812        @$(NORMAL_INSTALL) 
     
    826826        @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ 
    827827        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 
    828         test -n "$$files" || exit 0; \ 
    829         echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \ 
    830         cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files 
     828        dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) 
    831829install-nodist_pkgincludeHEADERS: $(nodist_pkginclude_HEADERS) 
    832830        @$(NORMAL_INSTALL) 
     
    846844        @list='$(nodist_pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ 
    847845        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 
    848         test -n "$$files" || exit 0; \ 
    849         echo " ( cd '$(DESTDIR)$(pkgincludedir)' && rm -f" $$files ")"; \ 
    850         cd "$(DESTDIR)$(pkgincludedir)" && rm -f $$files 
     846        dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) 
    851847install-pkgincludeHEADERS: $(pkginclude_HEADERS) 
    852848        @$(NORMAL_INSTALL) 
     
    866862        @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ 
    867863        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ 
    868         test -n "$$files" || exit 0; \ 
    869         echo " ( cd '$(DESTDIR)$(pkgincludedir)' && rm -f" $$files ")"; \ 
    870         cd "$(DESTDIR)$(pkgincludedir)" && rm -f $$files 
     864        dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) 
    871865 
    872866ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) 
     
    1003997          dashes=`echo "$$dashes" | sed s/./=/g`; \ 
    1004998          if test "$$failed" -eq 0; then \ 
    1005             echo "$$grn$$dashes"; \ 
     999            col="$$grn"; \ 
    10061000          else \ 
    1007             echo "$$red$$dashes"; \ 
     1001            col="$$red"; \ 
    10081002          fi; \ 
    1009           echo "$$banner"; \ 
    1010           test -z "$$skipped" || echo "$$skipped"; \ 
    1011           test -z "$$report" || echo "$$report"; \ 
    1012           echo "$$dashes$$std"; \ 
     1003          echo "$${col}$$dashes$${std}"; \ 
     1004          echo "$${col}$$banner$${std}"; \ 
     1005          test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \ 
     1006          test -z "$$report" || echo "$${col}$$report$${std}"; \ 
     1007          echo "$${col}$$dashes$${std}"; \ 
    10131008          test "$$failed" -eq 0; \ 
    10141009        else :; fi 
     
    10741069 
    10751070dist-bzip2: distdir 
    1076         tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 
     1071        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 
    10771072        $(am__remove_distdir) 
    10781073 
     
    10821077 
    10831078dist-xz: distdir 
    1084         tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz 
     1079        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz 
    10851080        $(am__remove_distdir) 
    10861081 
     
    11321127          && $(am__cd) $(distdir)/_build \ 
    11331128          && ../configure --srcdir=.. --prefix="$$dc_install_base" \ 
     1129            $(AM_DISTCHECK_CONFIGURE_FLAGS) \ 
    11341130            $(DISTCHECK_CONFIGURE_FLAGS) \ 
    11351131          && $(MAKE) $(AM_MAKEFLAGS) \ 
     
    11601156          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' 
    11611157distuninstallcheck: 
    1162         @$(am__cd) '$(distuninstallcheck_dir)' \ 
    1163         && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ 
     1158        @test -n '$(distuninstallcheck_dir)' || { \ 
     1159          echo 'ERROR: trying to run $@ with an empty' \ 
     1160               '$$(distuninstallcheck_dir)' >&2; \ 
     1161          exit 1; \ 
     1162        }; \ 
     1163        $(am__cd) '$(distuninstallcheck_dir)' || { \ 
     1164          echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ 
     1165          exit 1; \ 
     1166        }; \ 
     1167        test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ 
    11641168           || { echo "ERROR: files left after uninstall:" ; \ 
    11651169                if test -n "$(DESTDIR)"; then \ 
     
    11971201installcheck: installcheck-am 
    11981202install-strip: 
    1199         $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 
    1200           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 
    1201           `test -z '$(STRIP)' || \ 
    1202             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install 
     1203        if test -z '$(STRIP)'; then \ 
     1204          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 
     1205            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 
     1206              install; \ 
     1207        else \ 
     1208          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 
     1209            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 
     1210            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ 
     1211        fi 
    12031212mostlyclean-generic: 
    12041213 
  • png/trunk/README

    r6705 r6897  
    1 README for libpng version 1.5.8 - February 1, 2012 (shared library 15.0) 
     1README for libpng version 1.5.9 - February 18, 2012 (shared library 15.0) 
    22See the note about version numbers near the top of png.h 
    33 
  • png/trunk/configure

    r6705 r6897  
    11#! /bin/sh 
    22# Guess values for system-dependent variables and create Makefiles. 
    3 # Generated by GNU Autoconf 2.68 for libpng 1.5.8. 
     3# Generated by GNU Autoconf 2.68 for libpng 1.5.9. 
    44# 
    55# Report bugs to <png-mng-implement@lists.sourceforge.net>. 
     
    571571PACKAGE_NAME='libpng' 
    572572PACKAGE_TARNAME='libpng' 
    573 PACKAGE_VERSION='1.5.8' 
    574 PACKAGE_STRING='libpng 1.5.8' 
     573PACKAGE_VERSION='1.5.9' 
     574PACKAGE_STRING='libpng 1.5.9' 
    575575PACKAGE_BUGREPORT='png-mng-implement@lists.sourceforge.net' 
    576576PACKAGE_URL='' 
     
    673673am__fastdepCC_TRUE 
    674674CCDEPMODE 
     675am__nodep 
    675676AMDEPBACKSLASH 
    676677AMDEP_FALSE 
     
    13211322  # This message is too long to be a string in the A/UX 3.1 sh. 
    13221323  cat <<_ACEOF 
    1323 \`configure' configures libpng 1.5.8 to adapt to many kinds of systems. 
     1324\`configure' configures libpng 1.5.9 to adapt to many kinds of systems. 
    13241325 
    13251326Usage: $0 [OPTION]... [VAR=VALUE]... 
     
    13911392if test -n "$ac_init_help"; then 
    13921393  case $ac_init_help in 
    1393      short | recursive ) echo "Configuration of libpng 1.5.8:";; 
     1394     short | recursive ) echo "Configuration of libpng 1.5.9:";; 
    13941395   esac 
    13951396  cat <<\_ACEOF 
     
    15021503if $ac_init_version; then 
    15031504  cat <<\_ACEOF 
    1504 libpng configure 1.5.8 
     1505libpng configure 1.5.9 
    15051506generated by GNU Autoconf 2.68 
    15061507 
     
    19251926running configure, to aid debugging if configure makes a mistake. 
    19261927 
    1927 It was created by libpng $as_me 1.5.8, which was 
     1928It was created by libpng $as_me 1.5.9, which was 
    19281929generated by GNU Autoconf 2.68.  Invocation command line was 
    19291930 
     
    27402741# Define the identity of the package. 
    27412742 PACKAGE='libpng' 
    2742  VERSION='1.5.8' 
     2743 VERSION='1.5.9' 
    27432744 
    27442745 
     
    28042805 
    28052806 
    2806 PNGLIB_VERSION=1.5.8 
     2807PNGLIB_VERSION=1.5.9 
    28072808PNGLIB_MAJOR=1 
    28082809PNGLIB_MINOR=5 
    2809 PNGLIB_RELEASE=8 
     2810PNGLIB_RELEASE=9 
    28102811 
    28112812 
     
    36623663  am_depcomp="$ac_aux_dir/depcomp" 
    36633664  AMDEPBACKSLASH='\' 
     3665  am__nodep='_no' 
    36643666fi 
    36653667 if test "x$enable_dependency_tracking" != xno; then 
     
    36863688  # making a dummy file named `D' -- because `-MD' means `put the output 
    36873689  # in D'. 
     3690  rm -rf conftest.dir 
    36883691  mkdir conftest.dir 
    36893692  # Copy depcomp to subdir because otherwise we won't find it if we're 
     
    37453748      fi 
    37463749      ;; 
    3747     msvisualcpp | msvcmsys) 
     3750    msvc7 | msvc7msys | msvisualcpp | msvcmsys) 
    37483751      # This compiler won't grok `-c -o', but also, the minuso test has 
    37493752      # not run yet.  These depmodes are late enough in the game, and 
     
    38203823  # making a dummy file named `D' -- because `-MD' means `put the output 
    38213824  # in D'. 
     3825  rm -rf conftest.dir 
    38223826  mkdir conftest.dir 
    38233827  # Copy depcomp to subdir because otherwise we won't find it if we're 
     
    38773881      fi 
    38783882      ;; 
    3879     msvisualcpp | msvcmsys) 
     3883    msvc7 | msvc7msys | msvisualcpp | msvcmsys) 
    38803884      # This compiler won't grok `-c -o', but also, the minuso test has 
    38813885      # not run yet.  These depmodes are late enough in the game, and 
     
    1271412718 
    1271512719 
    12716 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libraries can be versioned" >&5 
    12717 $as_echo_n "checking if libraries can be versioned... " >&6; } 
    12718  
    1271912720{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if using Solaris linker" >&5 
    1272012721$as_echo_n "checking if using Solaris linker... " >&6; } 
     
    1273812739 
    1273912740 
     12741{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if libraries can be versioned" >&5 
     12742$as_echo_n "checking if libraries can be versioned... " >&6; } 
    1274012743# Special case for PE/COFF platforms: ld reports 
    1274112744# support for version-script, but doesn't actually 
     
    1341513418# values after options handling. 
    1341613419ac_log=" 
    13417 This file was extended by libpng $as_me 1.5.8, which was 
     13420This file was extended by libpng $as_me 1.5.9, which was 
    1341813421generated by GNU Autoconf 2.68.  Invocation command line was 
    1341913422 
     
    1348113484ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 
    1348213485ac_cs_version="\\ 
    13483 libpng config.status 1.5.8 
     13486libpng config.status 1.5.9 
    1348413487configured by $0, generated by GNU Autoconf 2.68, 
    1348513488  with options \\"\$ac_cs_config\\" 
  • png/trunk/configure.ac

    r6705 r6897  
    1919dnl Version number stuff here: 
    2020 
    21 AC_INIT([libpng], [1.5.8], [png-mng-implement@lists.sourceforge.net]) 
     21AC_INIT([libpng], [1.5.9], [png-mng-implement@lists.sourceforge.net]) 
    2222AM_INIT_AUTOMAKE 
    2323dnl stop configure from automagically running automake 
    2424AM_MAINTAINER_MODE 
    2525 
    26 PNGLIB_VERSION=1.5.8 
     26PNGLIB_VERSION=1.5.9 
    2727PNGLIB_MAJOR=1 
    2828PNGLIB_MINOR=5 
    29 PNGLIB_RELEASE=8 
     29PNGLIB_RELEASE=9 
    3030 
    3131dnl End of version number stuff 
  • png/trunk/install-sh

    r1 r6897  
    22# install - install a program, script, or datafile 
    33 
    4 scriptversion=2009-04-28.21; # UTC 
     4scriptversion=2011-01-19.21; # UTC 
    55 
    66# This originates from X11R5 (mit/util/scripts/install.sh), which was 
     
    157157 
    158158    -t) dst_arg=$2 
     159        # Protect names problematic for `test' and other utilities. 
     160        case $dst_arg in 
     161          -* | [=\(\)!]) dst_arg=./$dst_arg;; 
     162        esac 
    159163        shift;; 
    160164 
     
    187191    shift # arg 
    188192    dst_arg=$arg 
     193    # Protect names problematic for `test' and other utilities. 
     194    case $dst_arg in 
     195      -* | [=\(\)!]) dst_arg=./$dst_arg;; 
     196    esac 
    189197  done 
    190198fi 
     
    201209 
    202210if test -z "$dir_arg"; then 
    203   trap '(exit $?); exit' 1 2 13 15 
     211  do_exit='(exit $ret); exit $ret' 
     212  trap "ret=129; $do_exit" 1 
     213  trap "ret=130; $do_exit" 2 
     214  trap "ret=141; $do_exit" 13 
     215  trap "ret=143; $do_exit" 15 
    204216 
    205217  # Set umask so as not to create temps with too-generous modes. 
     
    229241for src 
    230242do 
    231   # Protect names starting with `-'. 
     243  # Protect names problematic for `test' and other utilities. 
    232244  case $src in 
    233     -*) src=./$src;; 
     245    -* | [=\(\)!]) src=./$src;; 
    234246  esac 
    235247 
     
    253265      exit 1 
    254266    fi 
    255  
    256267    dst=$dst_arg 
    257     # Protect names starting with `-'. 
    258     case $dst in 
    259       -*) dst=./$dst;; 
    260     esac 
    261268 
    262269    # If destination is a directory, append the input filename; won't work 
     
    386393      case $dstdir in 
    387394        /*) prefix='/';; 
    388         -*) prefix='./';; 
     395        [-=\(\)!]*) prefix='./';; 
    389396        *)  prefix='';; 
    390397      esac 
     
    404411      for d 
    405412      do 
    406         test -z "$d" && continue 
     413        test X"$d" = X && continue 
    407414 
    408415        prefix=$prefix$d 
  • png/trunk/libpng-manual.txt

    r6705 r6897  
    11libpng-manual.txt - A description on how to use and modify libpng 
    22 
    3  libpng version 1.5.8 - February 1, 2012 
     3 libpng version 1.5.9 - February 18, 2012 
    44 Updated and distributed by Glenn Randers-Pehrson 
    55 <glennrp at users.sourceforge.net> 
     
    1212 Based on: 
    1313 
    14  libpng versions 0.97, January 1998, through 1.5.8 - February 1, 2012 
     14 libpng versions 0.97, January 1998, through 1.5.9 - February 18, 2012 
    1515 Updated and distributed by Glenn Randers-Pehrson 
    1616 Copyright (c) 1998-2011 Glenn Randers-Pehrson 
     
    45744574XIV. Y2K Compliance in libpng 
    45754575 
    4576 February 1, 2012 
     4576February 18, 2012 
    45774577 
    45784578Since the PNG Development group is an ad-hoc body, we can't make 
     
    45804580 
    45814581This is your unofficial assurance that libpng from version 0.71 and 
    4582 upward through 1.5.8 are Y2K compliant.  It is my belief that earlier 
     4582upward through 1.5.9 are Y2K compliant.  It is my belief that earlier 
    45834583versions were also Y2K compliant. 
    45844584 
  • png/trunk/libpng.3

    r6705 r6897  
    1 .TH LIBPNG 3 "February 1, 2012" 
     1.TH LIBPNG 3 "February 18, 2012" 
    22.SH NAME 
    3 libpng \- Portable Network Graphics (PNG) Reference Library 1.5.8 
     3libpng \- Portable Network Graphics (PNG) Reference Library 1.5.9 
    44.SH SYNOPSIS 
    55\fI\fB 
     
    978978libpng-manual.txt - A description on how to use and modify libpng 
    979979 
    980  libpng version 1.5.8 - February 1, 2012 
     980 libpng version 1.5.9 - February 18, 2012 
    981981 Updated and distributed by Glenn Randers-Pehrson 
    982982 <glennrp at users.sourceforge.net> 
     
    989989 Based on: 
    990990 
    991  libpng versions 0.97, January 1998, through 1.5.8 - February 1, 2012 
     991 libpng versions 0.97, January 1998, through 1.5.9 - February 18, 2012 
    992992 Updated and distributed by Glenn Randers-Pehrson 
    993993 Copyright (c) 1998-2011 Glenn Randers-Pehrson 
     
    55525552.SH XIV. Y2K Compliance in libpng 
    55535553 
    5554 February 1, 2012 
     5554February 18, 2012 
    55555555 
    55565556Since the PNG Development group is an ad-hoc body, we can't make 
     
    55585558 
    55595559This is your unofficial assurance that libpng from version 0.71 and 
    5560 upward through 1.5.8 are Y2K compliant.  It is my belief that earlier 
     5560upward through 1.5.9 are Y2K compliant.  It is my belief that earlier 
    55615561versions were also Y2K compliant. 
    55625562 
     
    57655765 1.5.8beta01         15    10508  15.so.15.8[.0] 
    57665766 1.5.8rc01           15    10508  15.so.15.8[.0] 
     5767 1.5.8               15    10508  15.so.15.8[.0] 
     5768 1.5.9beta01-02      15    10509  15.so.15.9[.0] 
     5769 1.5.9rc01           15    10509  15.so.15.9[.0] 
     5770 1.5.9               15    10509  15.so.15.9[.0] 
    57675771 
    57685772Henceforth the source version will match the shared-library minor 
     
    58215825Thanks to Frank J. T. Wojcik for helping with the documentation. 
    58225826 
    5823 Libpng version 1.5.8 - February 1, 2012: 
     5827Libpng version 1.5.9 - February 18, 2012: 
    58245828Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc. 
    58255829Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net). 
     
    58445848This code is released under the libpng license. 
    58455849 
    5846 libpng versions 1.2.6, August 15, 2004, through 1.5.8, February 1, 2012, are 
     5850libpng versions 1.2.6, August 15, 2004, through 1.5.9, February 18, 2012, are 
    58475851Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are 
    58485852distributed according to the same disclaimer and license as libpng-1.2.5 
     
    59435947Glenn Randers-Pehrson 
    59445948glennrp at users.sourceforge.net 
    5945 February 1, 2012 
     5949February 18, 2012 
    59465950 
    59475951.\" end of man page 
  • png/trunk/libpngpf.3

    r6705 r6897  
    1 .TH LIBPNGPF 3 "February 1, 2012" 
     1.TH LIBPNGPF 3 "February 18, 2012" 
    22.SH NAME 
    3 libpng \- Portable Network Graphics (PNG) Reference Library 1.5.8 
     3libpng \- Portable Network Graphics (PNG) Reference Library 1.5.9 
    44(private functions) 
    55.SH SYNOPSIS 
  • png/trunk/png.5

    r6705 r6897  
    1 .TH PNG 5 "February 1, 2012" 
     1.TH PNG 5 "February 18, 2012" 
    22.SH NAME 
    33png \- Portable Network Graphics (PNG) format 
  • png/trunk/png.c

    r6705 r6897  
    1515 
    1616/* Generate a compiler error if there is an old png.h in the search path. */ 
    17 typedef png_libpng_version_1_5_8 Your_png_h_is_not_version_1_5_8; 
     17typedef png_libpng_version_1_5_9 Your_png_h_is_not_version_1_5_9; 
    1818 
    1919/* Tells libpng that we have already handled the first "num_bytes" bytes 
     
    656656#  ifdef __STDC__ 
    657657   return PNG_STRING_NEWLINE \ 
    658      "libpng version 1.5.8 - February 1, 2012" PNG_STRING_NEWLINE \ 
     658     "libpng version 1.5.9 - February 18, 2012" PNG_STRING_NEWLINE \ 
    659659     "Copyright (c) 1998-2011 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \ 
    660660     "Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \ 
     
    662662     PNG_STRING_NEWLINE; 
    663663#  else 
    664       return "libpng version 1.5.8 - February 1, 2012\ 
     664      return "libpng version 1.5.9 - February 18, 2012\ 
    665665      Copyright (c) 1998-2011 Glenn Randers-Pehrson\ 
    666666      Copyright (c) 1996-1997 Andreas Dilger\ 
  • png/trunk/png.h

    r6705 r6897  
    22/* png.h - header file for PNG reference library 
    33 * 
    4  * libpng version 1.5.8 - February 1, 2012 
     4 * libpng version 1.5.9 - February 18, 2012 
    55 * Copyright (c) 1998-2012 Glenn Randers-Pehrson 
    66 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 
     
    1212 *   libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat 
    1313 *   libpng versions 0.89c, June 1996, through 0.96, May 1997: Andreas Dilger 
    14  *   libpng versions 0.97, January 1998, through 1.5.8 - February 1, 2012: Glenn 
     14 *   libpng versions 0.97, January 1998, through 1.5.9 - February 18, 2012: Glenn 
    1515 *   See also "Contributing Authors", below. 
    1616 * 
     
    169169 *    1.5.8beta01             15    10508  15.so.15.8[.0] 
    170170 *    1.5.8rc01               15    10508  15.so.15.8[.0] 
     171 *    1.5.8                   15    10508  15.so.15.8[.0] 
     172 *    1.5.9beta01-02          15    10509  15.so.15.9[.0] 
     173 *    1.5.9rc01               15    10509  15.so.15.9[.0] 
     174 *    1.5.9                   15    10509  15.so.15.9[.0] 
    171175 * 
    172176 *   Henceforth the source version will match the shared-library major 
     
    200204 * This code is released under the libpng license. 
    201205 * 
    202  * libpng versions 1.2.6, August 15, 2004, through 1.5.8, February 1, 2012, are 
     206 * libpng versions 1.2.6, August 15, 2004, through 1.5.9, February 18, 2012, are 
    203207 * Copyright (c) 2004, 2006-2012 Glenn Randers-Pehrson, and are 
    204208 * distributed according to the same disclaimer and license as libpng-1.2.5 
     
    312316 * ========================= 
    313317 * 
    314  *    February 1, 2012 
     318 *    February 18, 2012 
    315319 * 
    316320 *    Since the PNG Development group is an ad-hoc body, we can't make 
     
    318322 * 
    319323 *    This is your unofficial assurance that libpng from version 0.71 and 
    320  *    upward through 1.5.8 are Y2K compliant.  It is my belief that 
     324 *    upward through 1.5.9 are Y2K compliant.  It is my belief that 
    321325 *    earlier versions were also Y2K compliant. 
    322326 * 
     
    376380 
    377381/* Version information for png.h - this should match the version in png.c */ 
    378 #define PNG_LIBPNG_VER_STRING "1.5.8" 
     382#define PNG_LIBPNG_VER_STRING "1.5.9" 
    379383#define PNG_HEADER_VERSION_STRING \ 
    380      " libpng version 1.5.8 - February 1, 2012\n" 
     384     " libpng version 1.5.9 - February 18, 2012\n" 
    381385 
    382386#define PNG_LIBPNG_VER_SONUM   15 
     
    386390#define PNG_LIBPNG_VER_MAJOR   1 
    387391#define PNG_LIBPNG_VER_MINOR   5 
    388 #define PNG_LIBPNG_VER_RELEASE 8 
     392#define PNG_LIBPNG_VER_RELEASE 9 
    389393 
    390394/* This should match the numeric part of the final component of 
     
    417421 * version 1.0.1 it's    xxyyzz, where x=major, y=minor, z=release 
    418422 */ 
    419 #define PNG_LIBPNG_VER 10508 /* 1.5.8 */ 
     423#define PNG_LIBPNG_VER 10509 /* 1.5.9 */ 
    420424 
    421425/* Library configuration: these options cannot be changed after 
     
    539543 * do not agree upon the version number. 
    540544 */ 
    541 typedef char* png_libpng_version_1_5_8; 
     545typedef char* png_libpng_version_1_5_9; 
    542546 
    543547/* Three color definitions.  The order of the red, green, and blue, (and the 
  • png/trunk/pngconf.h

    r6705 r6897  
    22/* pngconf.h - machine configurable file for libpng 
    33 * 
    4  * libpng version 1.5.8 - February 1, 2012 
     4 * libpng version 1.5.9 - February 18, 2012 
    55 * 
    66 * Copyright (c) 1998-2012 Glenn Randers-Pehrson 
  • png/trunk/pngerror.c

    r6705 r6897  
    22/* pngerror.c - stub functions for i/o and memory allocation 
    33 * 
    4  * Last changed in libpng 1.5.7 [February 1, 2012] 
     4 * Last changed in libpng 1.5.8 [February 1, 2011] 
    55 * Copyright (c) 1998-2012 Glenn Randers-Pehrson 
    66 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 
  • png/trunk/pnglibconf.h

    r6705 r6897  
    44/* pnglibconf.h - library build configuration */ 
    55 
    6 /* Libpng 1.5.8 - February 1, 2012 */ 
     6/* Libpng 1.5.9 - February 18, 2012 */ 
    77 
    88/* Copyright (c) 1998-2011 Glenn Randers-Pehrson */ 
     
    5555#define PNG_FLOATING_ARITHMETIC_SUPPORTED 
    5656#define PNG_FLOATING_POINT_SUPPORTED 
    57 #define PNG_FORMAT_AFIRST_SUPPORTED 
    58 #define PNG_FORMAT_BGR_SUPPORTED 
    5957#define PNG_gAMA_SUPPORTED 
    6058#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED 
  • png/trunk/pngpread.c

    r6257 r6897  
    22/* pngpread.c - read a png file in push mode 
    33 * 
    4  * Last changed in libpng 1.5.7 [December 15, 2011] 
     4 * Last changed in libpng 1.5.9 [February 18, 2012] 
    55 * Copyright (c) 1998-2011 Glenn Randers-Pehrson 
    66 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 
     
    731731      new_max = png_ptr->save_buffer_size + png_ptr->current_buffer_size + 256; 
    732732      old_buffer = png_ptr->save_buffer; 
    733       png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr, 
    734           (png_size_t)new_max); 
     733      png_ptr->save_buffer = (png_bytep)png_malloc_warn(png_ptr, new_max); 
    735734 
    736735      if (png_ptr->save_buffer == NULL) 
     
    12021201png_read_push_finish_row(png_structp png_ptr) 
    12031202{ 
     1203#ifdef PNG_READ_INTERLACING_SUPPORTED 
    12041204   /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ 
    12051205 
     
    12201220   static PNG_CONST png_byte FARDATA png_pass_height[] = {8, 8, 4, 4, 2, 2, 1}; 
    12211221   */ 
     1222#endif 
    12221223 
    12231224   png_ptr->row_number++; 
     
    12861287#endif 
    12871288 
    1288    png_ptr->current_text = (png_charp)png_malloc(png_ptr, 
    1289        (png_size_t)(length + 1)); 
     1289   png_ptr->current_text = (png_charp)png_malloc(png_ptr, length + 1); 
    12901290   png_ptr->current_text[length] = '\0'; 
    12911291   png_ptr->current_text_ptr = png_ptr->current_text; 
     
    13851385#endif 
    13861386 
    1387    png_ptr->current_text = (png_charp)png_malloc(png_ptr, 
    1388        (png_size_t)(length + 1)); 
     1387   png_ptr->current_text = (png_charp)png_malloc(png_ptr, length + 1); 
    13891388   png_ptr->current_text[length] = '\0'; 
    13901389   png_ptr->current_text_ptr = png_ptr->current_text; 
     
    15871586#endif 
    15881587 
    1589    png_ptr->current_text = (png_charp)png_malloc(png_ptr, 
    1590        (png_size_t)(length + 1)); 
     1588   png_ptr->current_text = (png_charp)png_malloc(png_ptr, length + 1); 
    15911589   png_ptr->current_text[length] = '\0'; 
    15921590   png_ptr->current_text_ptr = png_ptr->current_text; 
     
    17331731      PNG_CSTRING_FROM_CHUNK(png_ptr->unknown_chunk.name, png_ptr->chunk_name); 
    17341732 
    1735       /* The following cast should be safe because of the check above. */ 
    1736       png_ptr->unknown_chunk.size = (png_size_t)length; 
     1733      png_ptr->unknown_chunk.size = length; 
    17371734 
    17381735      if (length == 0) 
  • png/trunk/pngrutil.c

    r6257 r6897  
    22/* pngrutil.c - utilities to read a PNG file 
    33 * 
    4  * Last changed in libpng 1.5.7 [December 15, 2011] 
    5  * Copyright (c) 1998-2011 Glenn Randers-Pehrson 
     4 * Last changed in libpng 1.5.9 [February 18, 2012] 
     5 * Copyright (c) 1998-2012 Glenn Randers-Pehrson 
    66 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 
    77 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) 
     
    433433       * compressed data will be removed, the prefix will remain. 
    434434       */ 
     435      if (prefix_size >= (~(png_size_t)0) - 1 || 
     436         expanded_size >= (~(png_size_t)0) - 1 - prefix_size 
    435437#ifdef PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED 
    436       if (png_ptr->user_chunk_malloc_max && 
     438         || (png_ptr->user_chunk_malloc_max && 
    437439          (prefix_size + expanded_size >= png_ptr->user_chunk_malloc_max - 1)) 
    438440#else 
    439441#  ifdef PNG_USER_CHUNK_MALLOC_MAX 
    440       if ((PNG_USER_CHUNK_MALLOC_MAX > 0) && 
     442         || ((PNG_USER_CHUNK_MALLOC_MAX > 0) && 
    441443          prefix_size + expanded_size >= PNG_USER_CHUNK_MALLOC_MAX - 1) 
    442444#  endif 
    443445#endif 
     446         ) 
    444447         png_warning(png_ptr, "Exceeded size limit while expanding chunk"); 
    445448 
     
    449452       * error case below. 
    450453       */ 
    451 #if defined(PNG_SET_CHUNK_MALLOC_LIMIT_SUPPORTED) || \ 
    452     defined(PNG_USER_CHUNK_MALLOC_MAX) 
    453454      else if (expanded_size > 0) 
    454 #else 
    455       if (expanded_size > 0) 
    456 #endif 
    457455      { 
    458456         /* Success (maybe) - really uncompress the chunk. */ 
     
    12801278   png_free(png_ptr, png_ptr->chunkdata); 
    12811279   png_ptr->chunkdata = (png_charp)png_malloc(png_ptr, length + 1); 
    1282    slength = (png_size_t)length; 
     1280   slength = length; 
    12831281   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    12841282 
     
    14301428    * potential breakage point if the types in pngconf.h aren't exactly right. 
    14311429    */ 
    1432    slength = (png_size_t)length; 
     1430   slength = length; 
    14331431   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    14341432 
     
    19571955   } 
    19581956 
    1959    slength = (png_size_t)length; 
     1957   slength = length; 
    19601958   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    19611959 
     
    21062104   } 
    21072105 
    2108    slength = (png_size_t)length; 
     2106   slength = length; 
    21092107   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    21102108   png_ptr->chunkdata[slength] = 0x00; /* Null terminate the last string */ 
     
    22662264   } 
    22672265 
    2268    slength = (png_size_t)length; 
     2266   slength = length; 
    22692267   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    22702268 
     
    23742372   } 
    23752373 
    2376    slength = (png_size_t)length; 
     2374   slength = length; 
    23772375   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    23782376 
     
    25052503   } 
    25062504 
    2507    slength = (png_size_t)length; 
     2505   slength = length; 
    25082506   png_crc_read(png_ptr, (png_bytep)png_ptr->chunkdata, slength); 
    25092507 
  • png/trunk/pngstruct.h

    r6257 r6897  
    66 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) 
    77 * 
    8  * Last changed in libpng 1.5.5 [September 22, 2011] 
     8 * Last changed in libpng 1.5.9 [February 18, 2012] 
    99 * 
    1010 * This code is released under the libpng license. 
     
    284284 
    285285/* New member added in libpng-1.0.4 (renamed in 1.0.9) */ 
    286 #if defined(PNG_MNG_FEATURES_SUPPORTED) || \ 
    287     defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \ 
    288     defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED) 
     286#if defined(PNG_MNG_FEATURES_SUPPORTED) 
    289287/* Changed from png_byte to png_uint_32 at version 1.2.0 */ 
    290288   png_uint_32 mng_features_permitted; 
  • png/trunk/pngtest.c

    r6705 r6897  
    11661166 
    11671167         if (verbose) 
    1168             printf("\nText compression=%d\n", text_ptr->compression); 
     1168            printf("\n Text compression=%d\n", text_ptr->compression); 
    11691169 
    11701170         png_set_text(write_ptr, write_info_ptr, text_ptr, num_text); 
     
    18181818 
    18191819/* Generate a compiler error if there is an old png.h in the search path. */ 
    1820 typedef png_libpng_version_1_5_8 Your_png_h_is_not_version_1_5_8; 
     1820typedef png_libpng_version_1_5_9 Your_png_h_is_not_version_1_5_9; 
  • png/trunk/scripts/README.txt

    r6705 r6897  
    11 
    2 Makefiles for  libpng version 1.5.8 - February 1, 2012 
     2Makefiles for  libpng version 1.5.9 - February 18, 2012 
    33 
    44pnglibconf.h.prebuilt       =>  Stores configuration settings 
    55 makefile.linux    =>  Linux/ELF makefile 
    6                        (gcc, creates libpng15.so.15.1.5.8) 
     6                       (gcc, creates libpng15.so.15.1.5.9) 
    77 makefile.gcc      =>  Generic makefile (gcc, creates static libpng.a) 
    88 makefile.knr      =>  Archaic UNIX Makefile that converts files with 
     
    2121 makefile.dj2      =>  DJGPP 2 makefile 
    2222 makefile.elf      =>  Linux/ELF makefile symbol versioning, 
    23                        (gcc, creates libpng15.so.15.1.5.8) 
     23                       (gcc, creates libpng15.so.15.1.5.9) 
    2424 makefile.freebsd  =>  FreeBSD makefile 
    2525 makefile.gcc      =>  Generic gcc makefile 
     
    3636 makefile.sco      =>  For SCO OSr5  ELF and Unixware 7 with Native cc 
    3737 makefile.sggcc    =>  Silicon Graphics (gcc, 
    38                        creates libpng15.so.15.1.5.8) 
     38                       creates libpng15.so.15.1.5.9) 
    3939 makefile.sgi      =>  Silicon Graphics IRIX makefile (cc, creates static lib) 
    4040 makefile.solaris  =>  Solaris 2.X makefile (gcc, 
    41                        creates libpng15.so.15.1.5.8) 
     41                       creates libpng15.so.15.1.5.9) 
    4242 makefile.so9      =>  Solaris 9 makefile (gcc, 
    43                        creates libpng15.so.15.1.5.8) 
     43                       creates libpng15.so.15.1.5.9) 
    4444 makefile.std      =>  Generic UNIX makefile (cc, creates static libpng.a) 
    4545 makefile.sunos    =>  Sun makefile 
  • png/trunk/scripts/libpng-config-head.in

    r6705 r6897  
    1212# Modeled after libxml-config. 
    1313 
    14 version=1.5.8 
     14version=1.5.9 
    1515prefix="" 
    1616libdir="" 
  • png/trunk/scripts/libpng.pc.in

    r6705 r6897  
    66Name: libpng 
    77Description: Loads and saves PNG files 
    8 Version: 1.5.8 
     8Version: 1.5.9 
    99Libs: -L${libdir} -lpng15 
    1010Cflags: -I${includedir} 
  • png/trunk/scripts/makefile.cegcc

    r6705 r6897  
    2424VERMAJ = 1 
    2525VERMIN = 5 
    26 VERMIC = 8 
     26VERMIC = 9 
    2727VER = $(VERMAJ).$(VERMIN).$(VERMIC) 
    2828NAME = libpng 
  • png/trunk/scripts/makefile.linux

    r6705 r6897  
    1111LIBNAME = libpng15 
    1212PNGMAJ = 15 
    13 RELEASE = 8 
     13RELEASE = 9 
    1414 
    1515# Shared library names: 
  • png/trunk/scripts/makefile.ne12bsd

    r6705 r6897  
    1818LIB=    png15 
    1919SHLIB_MAJOR=    0 
    20 SHLIB_MINOR=    1.5.8 
     20SHLIB_MINOR=    1.5.9 
    2121SRCS=   png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \ 
    2222        pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \ 
  • png/trunk/scripts/makefile.netbsd

    r6705 r6897  
    1818LIB=    png 
    1919SHLIB_MAJOR=    15 
    20 SHLIB_MINOR=    1.5.8 
     20SHLIB_MINOR=    1.5.9 
    2121SRCS=   png.c pngset.c pngget.c pngrutil.c pngtrans.c pngwutil.c \ 
    2222        pngread.c pngrio.c pngwio.c pngwrite.c pngrtran.c \ 
  • png/trunk/scripts/makefile.openbsd

    r6705 r6897  
    1212 
    1313SHLIB_MAJOR=    15 
    14 SHLIB_MINOR=    1.5.8 
     14SHLIB_MINOR=    1.5.9 
    1515 
    1616LIB=    png 
  • png/trunk/scripts/symbols.def

    r6705 r6897  
    66 
    77EXPORTS 
    8 ;Version 1.5.8 
     8;Version 1.5.9 
    99 png_access_version_number @1 
    1010 png_set_sig_bytes @2 
Note: See TracChangeset for help on using the changeset viewer.