~ubuntu-branches/ubuntu/oneiric/libpng/oneiric

« back to all changes in this revision

Viewing changes to png.c

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2009-05-22 09:11:26 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090522091126-ackh8fu2581nwuyg
Tags: 1.2.36-1
* New upstream release 
* Standards-Version is 3.8.1
* debhelper compat is 7
* Run dh_prep instead of dh_clean -k

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include "png.h"
14
14
 
15
15
/* Generate a compiler error if there is an old png.h in the search path. */
16
 
typedef version_1_2_35 Your_png_h_is_not_version_1_2_35;
 
16
typedef version_1_2_36 Your_png_h_is_not_version_1_2_36;
17
17
 
18
18
/* Version information for C files.  This had better match the version
19
19
 * string defined in png.h.  */
694
694
png_get_copyright(png_structp png_ptr)
695
695
{
696
696
   png_ptr = png_ptr;  /* silence compiler warning about unused png_ptr */
697
 
   return ((png_charp) "\n libpng version 1.2.35 - February 14, 2009\n\
 
697
   return ((png_charp) "\n libpng version 1.2.36 - May 7, 2009\n\
698
698
   Copyright (c) 1998-2008 Glenn Randers-Pehrson\n\
699
699
   Copyright (c) 1996-1997 Andreas Dilger\n\
700
700
   Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\n");
800
800
/* Added at libpng version 1.2.34 and 1.4.0 (moved from pngset.c) */
801
801
#if defined(PNG_cHRM_SUPPORTED)
802
802
#if !defined(PNG_NO_CHECK_cHRM)
 
803
 
803
804
/*
804
805
 Multiply two 32-bit numbers, V1 and V2, using 32-bit
805
806
 arithmetic, to produce a 64 bit result in the HI/LO words.