Since oFono does (obviously) not use -nostdlib, this only broke support
for alternative C run-times.
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 7f7a935..0c1986a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -61,7 +61,7 @@ AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie],
AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads],
[enable threading support]), [enable_threads=${enableval}])
-AC_CHECK_LIB(c, signalfd, dummy=yes,
+AC_CHECK_FUNC(signalfd, dummy=yes,
AC_MSG_ERROR(signalfd support is required))
AC_CHECK_LIB(dl, dlopen, dummy=yes,
--
1.7.1
Show replies by thread
Hi Remi,
Since oFono does (obviously) not use -nostdlib, this only broke
support
for alternative C run-times.
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
looks good enough to me. Patch has been applied.
Regards
Marcel