From 6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e Mon Sep 17 00:00:00 2001 From: eb Date: Tue, 30 Jan 2007 02:12:05 +0000 Subject: Merged eb/omni -r4315:4327 into trunk. Extracted omnithread from gnuradio-core and made it a top-level component. This allows mblock to use it without a dependency on gnuradio-core. Completes ticket:132 git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@4328 221aa14e-8319-0410-a670-987f0aec2ac5 --- config/grc_mblock.m4 | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'config/grc_mblock.m4') diff --git a/config/grc_mblock.m4 b/config/grc_mblock.m4 index a8fba4e03..6e4bc4afe 100644 --- a/config/grc_mblock.m4 +++ b/config/grc_mblock.m4 @@ -28,6 +28,16 @@ AC_DEFUN([GRC_MBLOCK],[ ]) passed=yes + # Don't do mblock if omnithread skipped + # There *has* to be a better way to check if a value is in a string + for dir in $skipped_dirs + do + if test x$dir = xomnithread; then + AC_MSG_RESULT([Component mblock requires omnithread, which is not being built.]) + passed=no + fi + done + # Don't do mblock if pmt skipped # There *has* to be a better way to check if a value is in a string for dir in $skipped_dirs -- cgit