Hi Frederic, * Frederic Peters wrote on Wed, May 24, 2006 at 01:55:50PM CEST: > Package: autoconf > Version: 2.59.cvs.2006.05.13-1 > Severity: normal > > autoconf went upgraded in one of the chroot running jhautobuild[1] and > avahi started no longer to compile, failing in autom4te. > > This may be caused by a bug in avahi common/doxygen.m4 but I failed to > spot it and going back to etch autoconf solved the problem.
Thanks for the report. Please try this patch. (I'm not quite sure yet whether that is the right fix, as I haven't understood all that is supposed to be going on; but it seems to me that the desired effect couldn't have worked correctly with 2.59 either.) Cheers, Ralf --- avahi-0.6.10/common/doxygen.m4 2005-08-04 02:45:33.000000000 +0200 +++ avahi-0.6.10/common/doxygen.m4 2006-05-24 14:40:25.000000000 +0200 @@ -78,7 +78,7 @@ AC_PATH_TOOL([$1], [$2]) if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION]) - AC_SUBST([DX_FLAG_[]DX_CURRENT_FEATURE], 0) + AC_SUBST([DX_FLAG_]DX_CURRENT_FEATURE, 0) fi ]) @@ -101,7 +101,7 @@ # ---------------------------------------------------------- # Turn off the DX_CURRENT_FEATURE if the required feature is off. AC_DEFUN([DX_CLEAR_DEPEND], [ -test "$DX_FLAG_$1" = "$2" || AC_SUBST([DX_FLAG_[]DX_CURRENT_FEATURE], 0) +test "$DX_FLAG_$1" = "$2" || AC_SUBST([DX_FLAG_]DX_CURRENT_FEATURE, 0) ]) # DX_FEATURE_ARG(FEATURE, DESCRIPTION, -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]