Edit

kc3-lang/automake/m4/cond.m4

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-04-28 05:59:44
    Hash : d601f421
    Message : added Ian's conditionals

  • m4/cond.m4
  • # Define a conditional.
    
    AC_DEFUN(AM_CONDITIONAL,
    [AC_SUBST($1_TRUE)
    AC_SUBST($1_FALSE)
    if $2; then
      $1_TRUE=
      $1_FALSE='#'
    else
      $1_TRUE='#'
      $1_FALSE=
    fi])