[MPlayer-cvslog] r20582 - trunk/configure
Rich Felker
dalias at aerifal.cx
Sat Nov 4 21:59:11 CET 2006
On Wed, Nov 01, 2006 at 06:05:19PM +0100, reimar wrote:
> Author: reimar
> Date: Wed Nov 1 18:05:17 2006
> New Revision: 20582
>
> Modified:
> trunk/configure
>
> Log:
> gcc optimized != 0 check for extern function away, thus linking
> would still always succeed in cdda and cdio tests.
>
>
> Modified: trunk/configure
> ==============================================================================
> --- trunk/configure (original)
> +++ trunk/configure Wed Nov 1 18:05:17 2006
> @@ -5288,7 +5288,7 @@
> // This need a better test. How ?
> int main(void) {
> void *test = cdda_verbose_set;
> - return !test;
> + return test == (void *)1;
Um why not just call a function?
Rich
More information about the MPlayer-cvslog
mailing list