Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 281076 - media-sound/beast fails configure with autoconf-2.64
Summary: media-sound/beast fails configure with autoconf-2.64
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on: 281080
Blocks: autoconf-2.64
  Show dependency tree
 
Reported: 2009-08-11 09:07 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2009-10-13 11:18 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
Build log (beast-0.7.1-r2:20090811-083402.log,10.75 KB, text/plain)
2009-08-11 09:08 UTC, Diego Elio Pettenò (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Diego Elio Pettenò (RETIRED) gentoo-dev 2009-08-11 09:07:46 UTC
Check the attached build log; a quick glimpse over the configure.in tells me that the build system is overly complex, so finding the problem is going to be hard.

# check for maintainer mode tools
AC_CHECK_PROGS(XMLLINT, xmllint)
# check for maintainer/development build rules
AC_MSG_CHECKING(whether maintainer and develoment build rules are to be used)
if test x"$enable_maintainer_mode" = xyes ; then
    AC_MSG_RESULT(yes)
    AC_CHECK_PROGS(PYTHON, python2.4 python)
    if test -z "$PYTHON" || $PYTHON -c "import sys; sys.exit (sys.hexversion >= 0x20401f0)" 2>/dev/null ; then
        AC_MSG_ERROR([failed to detect python (version >= 2.4.1) required for maintainer mode])
    fi
    test -z "$XMLLINT" && { AC_MSG_ERROR([failed to detect xmllint required for maintainer mode]) }
else
    AC_MSG_RESULT(no)
fi

this is the snipped of code that seem to cause the problem; in particular it's the third line from the bottom; I'd suggest trying to replace the “test &&” with a full-blown if.
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2009-08-11 09:08:32 UTC
Created attachment 200900 [details]
Build log
Comment 2 Samuli Suominen (RETIRED) gentoo-dev 2009-10-13 11:18:25 UTC
Removed from tree (see bug 281080).