Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 6312 - alsamixer-gui fails to build, bug in configure.in, make dies immediately
Summary: alsamixer-gui fails to build, bug in configure.in, make dies immediately
Status: RESOLVED DUPLICATE of bug 6217
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High major (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-08-10 22:44 UTC by Dave Andruczyk
Modified: 2005-07-17 13:06 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dave Andruczyk 2002-08-10 22:44:01 UTC
alsamixergui hasa bug in configure.in for the test for fltk.  it is 
searching for the "numericsort" function, but SHOULD be searchign for 
fl_numericsort instead..

OLD:
AC_CHECK_LIB(fltk,numericsort,,AC_MSG_ERROR("missing fltk"))

NEW:
AC_CHECK_LIB(fltk,fl_numericsort,,AC_MSG_ERROR("missing fltk"))


Another problem ,configure succeeds now, but build fails immediately 
with 

# make
Making all in src
make[1]: Entering directory 
`/scratch/tmp/portage/alsamixergui-0.9.0.1.2/work/alsamixergui-0.9.0rc1-2/src'
Makefile:195: *** missing separator.  Stop.
make[1]: Leaving directory 
`/scratch/tmp/portage/alsamixergui-0.9.0.1.2/work/alsamixergui-0.9.0rc1-2/src'
make: *** [all-recursive] Error 1


the version of autoconf.automake gentoo uses broke my personal software 
code also, as I get similar errors in my own code (only on gentoo so 
far), and I do NOT yet know how to fix them.

 I'd appreciate any insights if you've seen this issue and resolved it 
in the past. (what needs to be doe to the ocnfigure.in, or 
Makefile.{in,am} files to prevent these issues..
Comment 1 SpanKY gentoo-dev 2002-08-11 02:07:55 UTC

*** This bug has been marked as a duplicate of 6217 ***