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

DVD

开发平台:

Unix_Linux

  1. dnl Autoconf configuration script ac3dec
  2. dnl 
  3. dnl Aaron Holtzman - May 1999
  4. dnl
  5. AC_INIT(decode.c)
  6. AC_CANONICAL_HOST
  7. AC_PREREQ(2.13)
  8. AM_CONFIG_HEADER(config.h)
  9. AM_INIT_AUTOMAKE(ac3dec, 0.5.4)
  10. AM_MAINTAINER_MODE
  11. AC_PROG_CC
  12. AC_PROG_GCC_TRADITIONAL
  13. AC_PROG_RANLIB
  14. dnl Figure out which OS we're on and what to do about it
  15. case "$host" in
  16. *-linux*) rm -f output.c; ln -s output_linux.c output.c;;
  17. *-solaris*) rm -f output.c; ln -s output_solaris.c output.c;;
  18. *) echo "$host is not currently supported by ac3dec"; exit 1;;
  19. esac
  20. AC_OUTPUT(tools/Makefile test/Makefile Makefile )