0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

gcc optimized != 0 check for extern function away, thus linking

would still always succeed in cdda and cdio tests.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20582 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2006-11-01 17:05:17 +00:00
parent 7ba222e6f4
commit 2e18f6e6a5

4
configure vendored
View File

@ -5288,7 +5288,7 @@ if test "$_cdparanoia" = auto ; then
// This need a better test. How ?
int main(void) {
void *test = cdda_verbose_set;
return !test;
return test == (void *)1;
}
EOF
_cdparanoia=no
@ -5317,7 +5317,7 @@ int main()
{
void *test = cdda_verbose_set;
printf("%s\n", CDIO_VERSION);
return !test;
return test == (void *)1;
}
EOF