configure.in
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. # this is our autoconf generator.  in reality, autoconf does much less
  2. # work than in a "traditional" make system.  This is a feature, not a bug.
  3. AC_INIT(build/Makefile.pre)dnl
  4. AC_DEFUN(AC_CHECK_DIR, echo $ac_n checking for "$2" directory... "" ; 
  5. if test -d "$2" ; then HAVE_$1=1 ; echo 'found' ; else HAVE_$1=0 ; echo 'not found' ; fi
  6.  )dnl
  7. AC_SUBST(HAVE_DO_NOT_DISTRIBUTE)dnl
  8. AC_CHECK_DIR(DO_NOT_DISTRIBUTE, do-not-distribute)dnl
  9. AC_PATH_PROG(GNU_MAKE, make, '', $PATH:/usr/bin:/usr/local/bin)dnl
  10. AC_ARG_WITH(toolchain, [
  11. Build options:
  12.   --with-toolchain=gnu use alternate toolchain to compile.],
  13. [VOCAL_USE_TOOLCHAIN=$with_toolchain],
  14. [VOCAL_USE_TOOLCHAIN=default])
  15. AC_SUBST(VOCAL_USE_TOOLCHAIN)dnl
  16. AC_ARG_WITH(builddir, [
  17. Toolchain options:
  18.   --with-builddir=/path/to/builddir      build in a local directory],
  19. [echo USE_BUILDDIR=$with_builddir > .make_prefs])
  20. AC_ARG_WITH(ar, [
  21.   --with-ar=/usr/local/bin/ar      path to GNU ar],
  22. [VOCAL_AR_PATH=$with_ar])
  23. AC_SUBST(VOCAL_AR_PATH)dnl
  24. AC_OUTPUT(build/Makefile.conf)dnl