Edit

kc3-lang/automake/m4/error.m4

Branch :

  • Show log

    Commit

  • Author : Akim Demaille
    Date : 2000-08-02 08:59:16
    Hash : 4b893ece
    Message : * m4: Quote properly the name of the macros being defined. Use `#' instead of `dnl' where appropriate. * m4/header.m4 (AM_CONFIG_HEADER): Get rid of changequote, just quote. Don't quote passive characters. Pull the AC_PREREQ outside the macro. * m4/init.m4: Pull the AC_PREREQ outside the macro.

  • m4/error.m4
  • # From Jim Meyering.  Use this if you use the GNU error.[ch].
    # FIXME: Migrate into libit
    
    AC_DEFUN([AM_FUNC_ERROR_AT_LINE],
    [AC_CACHE_CHECK([for error_at_line], am_cv_lib_error_at_line,
     [AC_TRY_LINK([],[error_at_line(0, 0, "", 0, "");],
                  am_cv_lib_error_at_line=yes,
    	      am_cv_lib_error_at_line=no)])
     if test $am_cv_lib_error_at_line = no; then
       LIBOBJS="$LIBOBJS error.$ac_objext"
     fi
     AC_SUBST(LIBOBJS)dnl
    ])