Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
d6af8239
Commit
d6af8239
authored
Nov 08, 2018
by
Anton Mitrofanov
Committed by
Henrik Gramner
Dec 23, 2018
Browse files
configure: Fix log2f misdetection on some systems
Bug report by Dirk Fieldhouse.
parent
b763e338
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure
View file @
d6af8239
...
...
@@ -1067,7 +1067,7 @@ if [ "$thread" = "posix" ]; then
fi
[
"
$thread
"
!=
"no"
]
&&
define HAVE_THREAD
if
cc_check
'math.h'
''
'log2f(
2
);'
;
then
if
cc_check
'math.h'
''
'
volatile float x = 2; return
log2f(
x
);'
;
then
define HAVE_LOG2F
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment