Hello, * Bruno Haible wrote on Thu, Dec 18, 2008 at 03:28:16AM CET: > --- m4/mbrtowc.m4.orig 2008-12-18 03:25:03.000000000 +0100 > +++ m4/mbrtowc.m4 2008-12-18 03:14:13.000000000 +0100 > @@ -9,6 +9,7 @@ > dnl This override of an autoconf macro can be removed when autoconf 2.60 or > dnl newer can be assumed everywhere. > > +m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.60]),[-1],[ > AC_DEFUN([AC_FUNC_MBRTOWC],
FWIW, there is a short-hand for this: m4_version_prereq([2.60],, [ AC_DEFUN([... ]) ]) It works at least back to Autoconf 2.59. Cheers, Ralf