version.c
上传用户:sorock1981
上传日期:2007-01-06
资源大小:73k
文件大小:1k
源码类别:

图片显示

开发平台:

Unix_Linux

  1. /*
  2.  * version.c
  3.  * Copyright (C) 1995 Alexander Lehmann
  4.  * For conditions of distribution and use, see the file COPYING
  5.  */
  6. #include "config.h"
  7. #include "zlib.h"
  8. #include "png.h"
  9. #ifndef PNGLIB
  10. #  define PNGLIB "pnglib (unknown version)"
  11. #endif
  12. #ifndef ZLIB
  13. #  define ZLIB "zlib (unknown version)"
  14. #endif
  15. const char version[] = "gif2png " VERSION;
  16. const char compile_info[]=
  17. #ifdef TMPFILE
  18.   "(TMPFILE) "
  19. #endif
  20. #if defined(PNG_LIBPNG_VER_STRING) && defined(ZLIB_VERSION)
  21.   "compiled " __DATE__ " with libpng " PNG_LIBPNG_VER_STRING " and zlib " ZLIB_VERSION ".";
  22. #else
  23.   "compiled " __DATE__ " with " PNGLIB " and " ZLIB ".";
  24. #endif