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.
This commit is contained in:
Rémi Denis-Courmont 2010-11-29 10:29:02 +02:00 committed by Marcel Holtmann
parent 85cbc6926e
commit ba657bd9ce
1 changed files with 1 additions and 1 deletions

View File

@ -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,