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.5)
  10. AM_MAINTAINER_MODE
  11. AC_PROG_CC
  12. AC_PROG_CXX
  13. AC_PROG_GCC_TRADITIONAL
  14. AC_PROG_RANLIB
  15. dnl Figure out which OS we're on and what to do about it
  16. case "$host" in
  17. *-linux*) 
  18. rm -f output.c
  19. ln -s output_linux.c output.c
  20. CFLAGS="$CFLAGS -DLINUX"
  21. CXXFLAGS="$CXXFLAGS -DLINUX";;
  22. *-solaris*) rm -f output.c; ln -s output_solaris.c output.c;;
  23. *) echo "$host is not currently supported by ac3dec"; exit 1;;
  24. esac
  25. AC_OUTPUT( Makefile )