diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-23 20:20:30 +0200 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-23 20:20:30 +0200 |
commit | 3b9073ec178d1ebd8563d94ebbb9b95726e31835 (patch) | |
tree | 895ed780d41501089e1464efd20482ab9a0e4c1c /configure.ac | |
parent | 37f3f44cc1c0f5cf3a9b3f0ffc32f638b281994e (diff) | |
download | dabmux-3b9073ec178d1ebd8563d94ebbb9b95726e31835.tar.gz dabmux-3b9073ec178d1ebd8563d94ebbb9b95726e31835.tar.bz2 dabmux-3b9073ec178d1ebd8563d94ebbb9b95726e31835.zip |
crc-dabmux: configuration file support for ensemble definitionr5
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 48d0c3b..e5206c3 100644 --- a/configure.ac +++ b/configure.ac @@ -17,12 +17,13 @@ # along with CRC-DabMux. If not, see <http://www.gnu.org/licenses/>. AC_PREREQ(2.61) -AC_INIT([CRC-DabMux], [0.3.0.4], [pascal.charest@crc.ca]) +AC_INIT([CRC-DabMux], [0.3.0.4-r5], [pascal.charest@crc.ca]) AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([-Wall]) AC_CONFIG_SRCDIR([src/DabMux.cpp]) AC_CONFIG_HEADER([config.h]) +AM_SILENT_RULES([yes]) case $host in *linux*) @@ -54,6 +55,7 @@ AC_PROG_INSTALL #AC_CHECK_LIB([fec], [init_rs_char], [], AC_MSG_ERROR([libfec is required])) # FIXME: Replace `main' with a function in `-lpthread': AC_CHECK_LIB([pthread], [pthread_create], [], AC_MSG_ERROR([libpthread is required])) +AC_CHECK_LIB([boost_system], [main], [], [AC_MSG_ERROR([library boost_system is missing])]) # Checks for header files. AC_MSG_CHECKING([for OS type]) |