mkoctfile_version.m4
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:1k
源码类别:

Audio

开发平台:

Unix_Linux

  1. dnl @synopsis OCTAVE_MKOCTFILE_VERSION
  2. dnl
  3. dnl Find the version of mkoctfile.
  4. dnl @version 1.0 Aug 23 2007
  5. dnl @author Erik de Castro Lopo <erikd AT mega-nerd DOT com>
  6. dnl
  7. dnl Permission to use, copy, modify, distribute, and sell this file for any 
  8. dnl purpose is hereby granted without fee, provided that the above copyright 
  9. dnl and this permission notice appear in all copies.  No representations are
  10. dnl made about the suitability of this software for any purpose.  It is 
  11. dnl provided "as is" without express or implied warranty.
  12. dnl
  13. AC_DEFUN([OCTAVE_MKOCTFILE_VERSION],
  14. [
  15. AC_ARG_WITH(mkoctfile,
  16. AC_HELP_STRING([--with-mkoctfile], [choose the mkoctfile version]),
  17. [ with_mkoctfile=$withval ])
  18. test -z "$with_mkoctfile" && with_mkoctfile=mkoctfile
  19. AC_CHECK_PROG(HAVE_MKOCTFILE,$with_mkoctfile,yes,no)
  20. if test "x$ac_cv_prog_HAVE_MKOCTFILE" = "xyes" ; then
  21. MKOCTFILE=$with_mkoctfile
  22. AC_MSG_CHECKING([for version of $MKOCTFILE])
  23. MKOCTFILE_VERSION=`$with_mkoctfile --version 2>&1 | sed 's/mkoctfile, version //g'`
  24. AC_MSG_RESULT($MKOCTFILE_VERSION)
  25. fi
  26. AC_SUBST(MKOCTFILE)
  27. AC_SUBST(MKOCTFILE_VERSION)
  28. ])# OCTAVE_MKOCTFILE_VERSION