mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-15 08:56:34 -05:00
build-sys: check strtod_l instead of strtof_l
We have no strtof_l calls in the code, so it doesn't make sense to check that function's availability. We have one strtod_l call, so let's check that instead. I don't know if this change makes any practical difference. I just wondered why we had HAVE_STRTOF_L ifdefs in core-util.c for code that didn't use strtof_l.
This commit is contained in:
parent
031ca87821
commit
27d71c00d8
2 changed files with 4 additions and 4 deletions
|
|
@ -572,7 +572,7 @@ AC_CHECK_FUNCS_ONCE([strerror_r])
|
|||
AC_CHECK_FUNCS_ONCE([lstat])
|
||||
|
||||
# Non-standard
|
||||
AC_CHECK_FUNCS_ONCE([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtof_l pipe2 accept4])
|
||||
AC_CHECK_FUNCS_ONCE([setresuid setresgid setreuid setregid seteuid setegid ppoll strsignal sig2str strtod_l pipe2 accept4])
|
||||
|
||||
AC_FUNC_ALLOCA
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue