aclocal.m4
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:3k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. dnl aclocal.m4 generated automatically by aclocal 1.2
  2. # Do all the work for Automake.  This macro actually does too much --
  3. # some checks are only needed if your package does certain things.
  4. # But this isn't really a big deal.
  5. # serial 1
  6. dnl Usage:
  7. dnl AM_INIT_AUTOMAKE(package,version, [no-define])
  8. AC_DEFUN(AM_INIT_AUTOMAKE,
  9. [AC_REQUIRE([AM_PROG_INSTALL])
  10. PACKAGE=[$1]
  11. AC_SUBST(PACKAGE)
  12. VERSION=[$2]
  13. AC_SUBST(VERSION)
  14. dnl test to see if srcdir already configured
  15. if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
  16.   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  17. fi
  18. ifelse([$3],,
  19. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  20. AC_DEFINE_UNQUOTED(VERSION, "$VERSION"))
  21. AM_SANITY_CHECK
  22. AC_ARG_PROGRAM
  23. dnl FIXME This is truly gross.
  24. missing_dir=`cd $ac_aux_dir && pwd`
  25. AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
  26. AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
  27. AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
  28. AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
  29. AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
  30. AC_PROG_MAKE_SET])
  31. # serial 1
  32. AC_DEFUN(AM_PROG_INSTALL,
  33. [AC_REQUIRE([AC_PROG_INSTALL])
  34. test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
  35. AC_SUBST(INSTALL_SCRIPT)dnl
  36. ])
  37. #
  38. # Check to make sure that the build environment is sane.
  39. #
  40. AC_DEFUN(AM_SANITY_CHECK,
  41. [AC_MSG_CHECKING([whether build environment is sane])
  42. # Just in case
  43. sleep 1
  44. echo timestamp > conftestfile
  45. # Do `set' in a subshell so we don't clobber the current shell's
  46. # arguments.  Must try -L first in case configure is actually a
  47. # symlink; some systems play weird games with the mod time of symlinks
  48. # (eg FreeBSD returns the mod time of the symlink's containing
  49. # directory).
  50. if (
  51.    set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
  52.    if test "$@" = "X"; then
  53.       # -L didn't work.
  54.       set X `ls -t $srcdir/configure conftestfile`
  55.    fi
  56.    test "[$]2" = conftestfile
  57.    )
  58. then
  59.    # Ok.
  60.    :
  61. else
  62.    AC_MSG_ERROR([newly created file is older than distributed files!
  63. Check your system clock])
  64. fi
  65. rm -f conftest*
  66. AC_MSG_RESULT(yes)])
  67. dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
  68. dnl The program must properly implement --version.
  69. AC_DEFUN(AM_MISSING_PROG,
  70. [AC_MSG_CHECKING(for working $2)
  71. # Run test in a subshell; some versions of sh will print an error if
  72. # an executable is not found, even if stderr is redirected.
  73. # Redirect stdin to placate older versions of autoconf.  Sigh.
  74. if ($2 --version) < /dev/null > /dev/null 2>&1; then
  75.    $1=$2
  76.    AC_MSG_RESULT(found)
  77. else
  78.    $1="$3/missing $2"
  79.    AC_MSG_RESULT(missing)
  80. fi
  81. AC_SUBST($1)])