~ubuntu-branches/debian/sid/stella/sid

« back to all changes in this revision

Viewing changes to src/libpng/png.c

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-02-05 08:09:05 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120205080905-9ej05rmkibowsm7j
Tags: 3.5.5-1
* New upstream version.
* Rewrite debian/copyright, using DEP-5 and updating for 2012.
* Update manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#include "pngpriv.h"
15
15
 
16
16
/* Generate a compiler error if there is an old png.h in the search path. */
17
 
typedef png_libpng_version_1_5_7 Your_png_h_is_not_version_1_5_7;
 
17
typedef png_libpng_version_1_5_8 Your_png_h_is_not_version_1_5_8;
18
18
 
19
19
/* Tells libpng that we have already handled the first "num_bytes" bytes
20
20
 * of the PNG file signature.  If the PNG data is embedded into another
655
655
#else
656
656
#  ifdef __STDC__
657
657
   return PNG_STRING_NEWLINE \
658
 
     "libpng version 1.5.7 - December 15, 2011" PNG_STRING_NEWLINE \
 
658
     "libpng version 1.5.8 - February 1, 2012" PNG_STRING_NEWLINE \
659
659
     "Copyright (c) 1998-2011 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
660
660
     "Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
661
661
     "Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
662
662
     PNG_STRING_NEWLINE;
663
663
#  else
664
 
      return "libpng version 1.5.7 - December 15, 2011\
 
664
      return "libpng version 1.5.8 - February 1, 2012\
665
665
      Copyright (c) 1998-2011 Glenn Randers-Pehrson\
666
666
      Copyright (c) 1996-1997 Andreas Dilger\
667
667
      Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.";