Browse Source

Fix check_func_headers. The reference to the function under test was being

optimized out by gcc when the headers lied about the function existing,
rendering the test useless in that situation.
This new test throws a warning in mingw-w64, but that should not be a problem.
Patch by Martin Storsjö <martin at martin dot st>

Originally committed as revision 19440 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Martin Storsjö Ramiro Polla 16 years ago
parent
commit
2b2c2a8179
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      configure

+ 1
- 2
configure View File

@@ -646,8 +646,7 @@ check_func_headers(){
check_ld "$@" <<EOF && enable $func && enable_safe $headers
$incs
int main(int argc, char **argv){
(void) $func;
return 0;
return (long) $func;
}
EOF
}


Loading…
Cancel
Save