From: Paolo Bonzini Date: Mon, 10 Aug 2009 18:00:01 +0000 (+0200) Subject: Fix description of the macro generated by AC_CHECK_MEMBERS. X-Git-Tag: v2.65~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6a777c4346bd4de6dc58ad30b9178ab9f691b7f;p=thirdparty%2Fautoconf.git Fix description of the macro generated by AC_CHECK_MEMBERS. * lib/autoconf/types.m4 (_AC_CHECK_MEMBERS): Fix regex replacement. Reported by Bruno Haible. --- diff --git a/ChangeLog b/ChangeLog index 85c68ee05..7815596e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-08-10 Paolo Bonzini + + Fix description of the macro generated by AC_CHECK_MEMBERS. + * lib/autoconf/types.m4 (_AC_CHECK_MEMBERS): Fix regex + replacement. Reported by Bruno Haible. + 2009-08-07 Romain Lenglet * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Make AC_RUN_IFELSE diff --git a/lib/autoconf/types.m4 b/lib/autoconf/types.m4 index 2d055de44..949f9adb1 100644 --- a/lib/autoconf/types.m4 +++ b/lib/autoconf/types.m4 @@ -911,7 +911,7 @@ AS_VAR_POPDEF([ac_Member])dnl m4_define([_AC_CHECK_MEMBERS], [[$1], [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$1]), [1], [Define to 1 if `]m4_bpatsubst([$1], - [^\([^.]*\)\.\(.*\)], [[\1' is a member of `\2]])['.])]]) + [^\([^.]*\)\.\(.*\)], [[\2' is a member of `\1]])['.])]]) # AC_CHECK_MEMBERS([AGGREGATE.MEMBER, ...], # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]