summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-22 10:57:39 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-22 10:57:46 +0200
commitc88e52e797824ed8835aac7754e3f5e1cdede9f0 (patch)
tree24518aeca02cf122d969890164b07fc380319cef /configure
parent32f550ee01bb8de450f6dd3d92ae977a8f6e21aa (diff)
parent5b2b0b912dbcd6ee8b598254b083c58d4847ef02 (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: configure: Enable the strtod workaround when building for bionic Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 80317eb1fd..4403d1ea1f 100755
--- a/configure
+++ b/configure
@@ -3565,6 +3565,9 @@ elif check_func_headers stdlib.h _get_doserrno; then
check_cpp_condition stdlib.h "defined(_WIN32_WINNT)" || add_cppflags -D_WIN32_WINNT=0x0502
elif check_cpp_condition stddef.h "defined __KLIBC__"; then
libc_type=klibc
+elif check_cpp_condition sys/cdefs.h "defined __BIONIC__"; then
+ libc_type=bionic
+ add_compat strtod.o strtod=avpriv_strtod
fi
test -n "$libc_type" && enable $libc_type