Displaying 2 results from an estimated 2 matches for "03a9e60".
2013 May 15
2
FLAC currently won't compile for Android [bisected]
Felix Homann wrote:
> Here are the warnings I get with 03a9e6064d406e3656afacdbe50e8e47ebfa0de3:
It seems Android sys/param.h doesn't define MIN/MAX.
Could you try to revert this commit on current master (or simply
change line 35 of src/libFLAC/include/private/macros.h back to
#if defined(__GNUC__)
) and recompile? Or possibly bisect 03a9e60..master to...
2013 May 15
2
FLAC currently won't compile for Android [bisected]
...H is set in config.h:
>
> OK ... Yet still I don't see how a change in
> src/libFLAC/include/private/macros.h could affect src/flac/utils.c in
> any way.
>
> Anyone got an idea?
I haven't spend too much attention to the errors when bisecting, sorry!
The first bad commit 03a9e6064d406e3656afacdbe50e8e47ebfa0de3 yields a
different error:
CCLD flac
../../src/libFLAC/.libs/libFLAC.so: error: undefined reference to 'MIN'
../../src/libFLAC/.libs/libFLAC.so: error: undefined reference to 'MAX'
collect2: error: ld returned 1 exit status
make[3]: *** [flac] Fe...