diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index 03c34d8..c04492c 100644 --- a/configure.ac +++ b/configure.ac @@ -58,11 +58,7 @@ AX_CXX_COMPILE_STDCXX_11(noext,mandatory) AC_CHECK_LIB([pthread], [pthread_create], [], AC_MSG_ERROR([libpthread is required])) AX_BOOST_BASE([1.48.0], [], AC_MSG_ERROR([BOOST 1.48 or later is required])) -# we need to check for libm before checking for fec AC_CHECK_LIB([m], [sin]) -AC_SEARCH_LIBS([init_rs_char], [fec], [], [ - AC_MSG_ERROR([unable to find libfec]) -]) # Checks for header files. AC_MSG_CHECKING([for OS type]) @@ -131,12 +127,6 @@ AC_ARG_ENABLE([input_test], [], [enable_input_test=no]) AS_IF([test "x$enable_input_test" = "xyes"], [AC_DEFINE(HAVE_INPUT_TEST, [1], [Define if TEST input is enabled])]) -# SLIP -AC_ARG_ENABLE([input_slip], - [AS_HELP_STRING([--enable-input-slip], [Enable SLIP input])], - [], [enable_input_slip=no]) -AS_IF([test "x$enable_input_slip" = "xyes"], - [AC_DEFINE(HAVE_INPUT_SLIP, [1], [Define if SLIP input is enabled])]) # UDP AC_ARG_ENABLE([input_udp], [AS_HELP_STRING([--enable-input-udp], [Enable UDP input])], @@ -267,7 +257,7 @@ echo echo "Inputs:" enabled="" disabled="" -for output in prbs test slip udp fifo file +for output in prbs test udp fifo file do eval var=\$enable_input_$output AS_IF([test "x$var" = "xyes"], |