Hi,
I just tried to build glame-1.0.1 on a fairly stock (AFAIK)
RedHat 7.3 machine. glame-1.0.0 built out of the box
here (using rpmbuild --rebuild -ta glame-1.0.0.tar.gz).
It fails in src/gui/importexport.c at the call of the
function ov_read_float(), which is from libvorbis. I assume
the call is correct for vorbis-1.0 (well, I know it is, I
check the new docs vs the old), but it fails on this fairly
standard distribution using vorbis-1.0rc3.
I realize you probably don't want to support such legacy
beta versions, but in case of a widespread distribution, it
may seem necessary. It's up to you.
I assume you'd need to have autoconf check this
function. I myself have work around it by applying a
patch which changes
ret = ov_read_float(&vf, &ssbuf, GLAME_BULK_BUFSIZE,
&current_section);
to
ret = ov_read_float(&vf, &ssbuf, &current_section);
which I hope is correct. ;-)
Just to let you know,
best regards,
Moritz
Logged In: YES
user_id=7575
Ah well. We rather want to check for the version during
configure, I think. Maybe nold wants to do something about
this before the debian package release of 1.0.1.
Logged In: YES
user_id=7832
Fixed in CVS.