tags 622007 patch user [email protected] usertags 622007 ubuntu-patch oneiric thanks
On Sat, Apr 09, 2011 at 02:02:56PM +0200, Lucas Nussbaum wrote: > During a rebuild of all packages in sid, your package failed to build on > amd64. > > Relevant part: > > debian/rules build > > dh_testdir > > # Add here commands to compile the package. > > ./autogen.sh > > libtoolize: putting auxiliary files in `.'. > > libtoolize: copying file `./ltmain.sh' > > libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'. > > libtoolize: copying file `m4/libtool.m4' > > libtoolize: copying file `m4/ltoptions.m4' > > libtoolize: copying file `m4/ltsugar.m4' > > libtoolize: copying file `m4/ltversion.m4' > > libtoolize: copying file `m4/lt~obsolete.m4' > > aclocal: macro `_LT_DECL_SED' required but not defined > > aclocal: macro `_LT_FUNC_STRIPNAME_CNF' required but not defined > > autoheader: error: AC_CONFIG_HEADERS not found in configure.in > > configure.in:26: error: possibly undefined macro: AM_INIT_AUTOMAKE > > If this token and others are legitimate, please use m4_pattern_allow. > > See the Autoconf documentation. [...] Upgrading to a current version of Automake seems to deal with this quite adequately. Would you consider this patch? * Upgrade to current automake (LP: #791265). diff -u eventlog-0.2.12/debian/control eventlog-0.2.12/debian/control --- eventlog-0.2.12/debian/control +++ eventlog-0.2.12/debian/control @@ -2,7 +2,7 @@ Section: libs Priority: extra Maintainer: SZALAY Attila <[email protected]> -Build-depends: debhelper (>=5), automake1.7, autoconf, libtool +Build-depends: debhelper (>=5), automake, autoconf, libtool Standards-Version: 3.9.1 Package: libevtlog0 only in patch2: unchanged: --- eventlog-0.2.12.orig/configure.in +++ eventlog-0.2.12/configure.in @@ -30,7 +30,7 @@ AC_CONFIG_MACRO_DIR([m4]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) AC_ARG_ENABLE(dlsym-wrapper, Thanks, -- Colin Watson [[email protected]] -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

