File: version.c

package info (click to toggle)
gif2png 2.5.1-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 536 kB
  • ctags: 291
  • sloc: sh: 2,188; ansic: 1,540; xml: 399; python: 247; makefile: 85
file content (28 lines) | stat: -rw-r--r-- 638 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * version.c
 * Copyright (C) 1995 Alexander Lehmann
 * For conditions of distribution and use, see the file COPYING
 */

#include "config.h"
#include "zlib.h"
#include "png.h"

#ifndef PNGLIB
#  define PNGLIB "pnglib (unknown version)"
#endif
#ifndef ZLIB
#  define ZLIB "zlib (unknown version)"
#endif

const char version[] = "gif2png " VERSION;

const char compile_info[]=
#ifdef TMPFILE
  "(TMPFILE) "
#endif
#if defined(PNG_LIBPNG_VER_STRING) && defined(ZLIB_VERSION)
  "compiled " __DATE__ " with libpng " PNG_LIBPNG_VER_STRING " and zlib " ZLIB_VERSION ".";
#else
  "compiled " __DATE__ " with " PNGLIB " and " ZLIB ".";
#endif