diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-05-03 19:34:18 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-05-03 19:34:18 +0200 |
commit | ac2f2f092dfbe2599baba119daf8cd036a2ec043 (patch) | |
tree | d9648bb9b7569db20bf27c4b1488cb584457026e | |
parent | 16255845fe4e61a55be45768b2746cc09d6e8de1 (diff) | |
download | dabmux-ac2f2f092dfbe2599baba119daf8cd036a2ec043.tar.gz dabmux-ac2f2f092dfbe2599baba119daf8cd036a2ec043.tar.bz2 dabmux-ac2f2f092dfbe2599baba119daf8cd036a2ec043.zip |
Add libfec check to configure.ac
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c7d2380..2e420cd 100644 --- a/configure.ac +++ b/configure.ac @@ -56,6 +56,12 @@ AC_PROG_INSTALL AC_CHECK_LIB([pthread], [pthread_create], [], AC_MSG_ERROR([libpthread is required])) AX_BOOST_BASE([1.41.0], [], AC_MSG_ERROR([BOOST 1.41 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]) AC_PREPROC_IFELSE( |