summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Denis-Courmont <remi.denis-courmont@nokia.com>2010-11-29 10:29:02 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-11-29 10:19:15 +0100
commitba657bd9ce80c6e75cb2610682c61b50a75cd844 (patch)
tree7f3b1c8babc2c6645311c0cb44078da381d57379
parent85cbc6926e6aa9fa69e14a558237ee869fdd3ba3 (diff)
downloadofono-ba657bd9ce80c6e75cb2610682c61b50a75cd844.tar.bz2
configure: do not hard-code the C run-time library name
Since oFono does (obviously) not use -nostdlib, this only broke support for alternative C run-times.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7f7a9351..0c1986a9 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,