aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Łyszczek <michal.lyszczek@bofc.pl>2018-10-01 18:12:11 +0200
committerMichał Łyszczek <michal.lyszczek@bofc.pl>2018-10-01 18:12:11 +0200
commitc2439f0967f723467acb7fa9c84c70899045237c (patch)
tree62909a89105aa2cfc5f1ba20bc68845df7209ea4
parentd95204ad78b7bfd0a7ad404f69a3a6c932d57db6 (diff)
downloadlibrb-c2439f0967f723467acb7fa9c84c70899045237c.tar.gz
librb-c2439f0967f723467acb7fa9c84c70899045237c.tar.bz2
librb-c2439f0967f723467acb7fa9c84c70899045237c.zip
remove ac_check_funcs from configure
it causes problems on some platforms (namely minix) and that information is not usefull for us anyway. error about missing functions will be printed during compilation/linking process anyway.
-rw-r--r--configure.ac4
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 6cfd071..e768e11 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,8 +65,6 @@ AS_IF([test "x$enable_posix_calls" = "xyes"],
[
AC_DEFINE([ENABLE_POSIX_CALLS], [1], [Enable posix helper functions])
AC_CHECK_HEADERS(unistd.h sys/select.h)
- AC_CHECK_FUNCS([read write select],,
- AC_MSG_ERROR(not found, needed by --enable-posix-calls))
],
# else
[
@@ -84,8 +82,6 @@ AS_IF([test "x$enable_trace" = "xyes"],
[
AC_DEFINE([TRACE_LOG], [1], [Enable trace logging from librb])
AC_CHECK_HEADERS([stdio.h syscall.h unistd.h])
- AC_CHECK_FUNCS([fprintf],,
- AC_MSG_ERROR(not found, needed by --enable-trace))
],
# else
[