Differences From Artifact [a772299926]:
- File
configure.ac
— part of check-in
[c74cbb9d07]
at
2016-12-25 00:53:54
on branch trunk
— Use -Werror=deprecated for the readdir_r check
Otherwise, we'll just get the deprecation warning and use it anyway,
which then fails during build due to -Werror. (user: js, size: 34653) [annotate] [blame] [check-ins using]
To Artifact [e0038a8dd6]:
- File
configure.ac
— part of check-in
[0ad678f125]
at
2017-01-07 03:26:50
on branch trunk
— Use strtof_l, strtod_l and asprintf_l if available
This avoids the hacks introduced in the previous commit, if those
functions are available. (user: js, size: 34730) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
867 868 869 870 871 872 873 874 875 876 877 878 879 880 | AC_MSG_RESULT(no) ]) OBJCFLAGS="$old_OBJCFLAGS" ]) AC_CHECK_FUNCS([sysconf gmtime_r localtime_r nanosleep fcntl]) AC_CHECK_FUNC(pipe, [ AC_DEFINE(OF_HAVE_PIPE, 1, [Whether we have pipe()]) ]) AC_ARG_ENABLE(sockets, AS_HELP_STRING([--disable-sockets], [disable socket support])) AS_IF([test x"$enable_sockets" != x"no"], [ | > > > | 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 | AC_MSG_RESULT(no) ]) OBJCFLAGS="$old_OBJCFLAGS" ]) AC_CHECK_FUNCS([sysconf gmtime_r localtime_r nanosleep fcntl]) AC_CHECK_HEADERS(xlocale.h) AC_CHECK_FUNCS([strtod_l strtof_l vasprintf_l]) AC_CHECK_FUNC(pipe, [ AC_DEFINE(OF_HAVE_PIPE, 1, [Whether we have pipe()]) ]) AC_ARG_ENABLE(sockets, AS_HELP_STRING([--disable-sockets], [disable socket support])) AS_IF([test x"$enable_sockets" != x"no"], [ |
︙ | ︙ |