mirror of
https://github.com/mpv-player/mpv
synced 2025-01-19 22:01:10 +00: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:
parent
7ba222e6f4
commit
2e18f6e6a5
4
configure
vendored
4
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user