Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 6312

Summary: alsamixer-gui fails to build, bug in configure.in, make dies immediately
Product: Gentoo Linux Reporter: Dave Andruczyk <djandruczyk>
Component: Current packagesAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED DUPLICATE    
Severity: major    
Priority: High    
Version: 1.2   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

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 ***