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

Audio

开发平台:

Unix_Linux

  1. dnl Make automake/libtool output more friendly to humans
  2. dnl
  3. dnl SHAVE_INIT([shavedir],[default_mode])
  4. dnl
  5. dnl shavedir: the directory where the shave scripts are, it defaults to
  6. dnl           $(top_builddir)
  7. dnl default_mode: (enable|disable) default shave mode.  This parameter
  8. dnl               controls shave's behaviour when no option has been
  9. dnl               given to configure.  It defaults to disable.
  10. dnl
  11. dnl * SHAVE_INIT should be called late in your configure.(ac|in) file (just
  12. dnl   before AC_CONFIG_FILE/AC_OUTPUT is perfect.  This macro rewrites CC and
  13. dnl   LIBTOOL, you don't want the configure tests to have these variables
  14. dnl   re-defined.
  15. dnl * This macro requires GNU make's -s option.
  16. AC_DEFUN([_SHAVE_ARG_ENABLE],
  17. [
  18.   AC_ARG_ENABLE([shave],
  19.     AS_HELP_STRING(
  20.       [--enable-shave],
  21.       [use shave to make the build pretty [[default=$1]]]),,
  22.       [enable_shave=$1]
  23.     )
  24. ])
  25. AC_DEFUN([SHAVE_INIT],
  26. [
  27.   dnl you can tweak the default value of enable_shave
  28.   m4_if([$2], [enable], [_SHAVE_ARG_ENABLE(yes)], [_SHAVE_ARG_ENABLE(no)])
  29.   if test x"$enable_shave" = xyes; then
  30.     dnl where can we find the shave scripts?
  31.     m4_if([$1],,
  32.       [shavedir="$ac_pwd"],
  33.       [shavedir="$ac_pwd/$1"])
  34.     AC_SUBST(shavedir)
  35.     dnl make is now quiet
  36.     AC_SUBST([MAKEFLAGS], [-s])
  37.     AC_SUBST([AM_MAKEFLAGS], ['`test -z $V && echo -s`'])
  38.     dnl we need sed
  39.     AC_CHECK_PROG(SED,sed,sed,false)
  40.     dnl substitute libtool
  41.     SHAVE_SAVED_LIBTOOL=$LIBTOOL
  42.     LIBTOOL="${SHELL} ${shavedir}/shave-libtool '${SHAVE_SAVED_LIBTOOL}'"
  43.     AC_SUBST(LIBTOOL)
  44.     dnl substitute cc/cxx
  45.     SHAVE_SAVED_CC=$CC
  46.     SHAVE_SAVED_CXX=$CXX
  47.     SHAVE_SAVED_FC=$FC
  48.     SHAVE_SAVED_F77=$F77
  49.     SHAVE_SAVED_OBJC=$OBJC
  50.     CC="${SHELL} ${shavedir}/shave cc ${SHAVE_SAVED_CC}"
  51.     CXX="${SHELL} ${shavedir}/shave cxx ${SHAVE_SAVED_CXX}"
  52.     FC="${SHELL} ${shavedir}/shave fc ${SHAVE_SAVED_FC}"
  53.     F77="${SHELL} ${shavedir}/shave f77 ${SHAVE_SAVED_F77}"
  54.     OBJC="${SHELL} ${shavedir}/shave objc ${SHAVE_SAVED_OBJC}"
  55.     AC_SUBST(CC)
  56.     AC_SUBST(CXX)
  57.     AC_SUBST(FC)
  58.     AC_SUBST(F77)
  59.     AC_SUBST(OBJC)
  60.     V=@
  61.   else
  62.     V=1
  63.   fi
  64.   Q='$(V:1=)'
  65.   AC_SUBST(V)
  66.   AC_SUBST(Q)
  67. ])