Not really gentoo specific, unless this is a problem caused by a gentoo patch.
in flac-1.2.0/src/flac/encode.c, on line 2181,
if(e->use_ogg && e->total_samples_to_encode > 0 && e->total_samp
les_to_encode / e->sample_rate / 10 > 230)
should be
if(
#if FLAC__HAS_OGG
e->use_ogg &&
#endif
e->total_samples_to_encode > 0 && e->total_samp
les_to_encode / e->sample_rate / 10 > 230)
or something else equivalent. Personally, I think that the 'changing contents
of if statement based on compile time flags' is disgusting, but whatever.
(In reply to comment #0)
> Not really gentoo specific, unless this is a problem caused by a gentoo patch.
> in flac-1.2.0/src/flac/encode.c, on line 2181,
It's not because of our patches but definately a problem, thanks.. looking at
it.