Edit

kc3-lang/automake/m4/missing.m4

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-03-19 05:37:03
    Hash : 09bb43da
    Message : fixed up "missing" support

  • m4/missing.m4
  • ## --------------------------------------------------------- ##
    ## Fake the existence of programs that GNU maintainers use.  ##
    ## --------------------------------------------------------- ##
    dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
    dnl The program must properly implement --version.
    AC_DEFUN(AM_MISSING_PROG,
    [if $2 --version > /dev/null 2>&1; then
        $1=$2
     else
        $1="$3/missing $2"
     fi])