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

图片显示

开发平台:

Unix_Linux

  1. dnl Autoconfigure input file for gif2png
  2. dnl Eric S. Raymond <esr@thyrsus.com>
  3. dnl
  4. dnl Process this file with autoconf to produce a configure script.
  5. dnl
  6. AC_INIT(gif2png.h) dnl A distinctive file to look for in srcdir. 
  7. AM_INIT_AUTOMAKE(gif2png, 2.3.2)
  8. AM_CONFIG_HEADER(config.h)
  9. AC_PROG_CC
  10. AC_PROG_INSTALL
  11. AC_PROG_CPP dnl Later checks need this.
  12. AC_PROG_CC_C_O
  13. AC_HEADER_STDC
  14. AC_ARG_PROGRAM
  15. AC_ARG_WITH(png,[  --with-png=DIR             location of png lib/inc],
  16. [LDFLAGS="${LDFLAGS} -L${withval}"
  17. CFLAGS="${CFLAGS} -I${withval}"])
  18.   
  19. AC_ARG_WITH(png-lib,[  --with-png-lib=DIR         location of png library],
  20. [LDFLAGS="${LDFLAGS} -L${withval}"])
  21.                 
  22. AC_ARG_WITH(png-inc,[  --with-png-inc=DIR         location of the libpng include files],
  23.                 [CFLAGS="${CFLAGS} -I${withval}"])
  24. ### use option --enable-TMPFILE to set TMPFILE mode
  25. AC_ARG_ENABLE(TMPFILE,
  26. [  --enable-TMPFILE           compile in TMPFILE support],
  27. [with_TMPFILE=$enableval],
  28. [with_TMPFILE=no])
  29. test "$with_TMPFILE" = "yes" && AC_DEFINE(TMPFILE_ENABLE)
  30. AC_CHECK_LIB(z, deflate)
  31. AC_CHECK_LIB(m, pow)
  32. AC_CHECK_LIB(png, png_write_init, , , $LIBS)
  33. if test "$ac_cv_lib_png_png_write_init" = "no"
  34. then
  35.     AC_ERROR([PNG library is missing! Please get it.])
  36. fi
  37. if test "$ac_cv_lib_z_deflate" = "no"
  38. then
  39.     AC_ERROR([ZLIB library is missing! Please get it.])
  40. fi
  41. AC_OUTPUT(Makefile gif2png.spec)
  42. dnl Local Variables:
  43. dnl comment-start: "dnl "
  44. dnl comment-end: ""
  45. dnl comment-start-skip: "\bdnl\b\s *"
  46. dnl compile-command: "make configure config.h.in"
  47. dnl End: