diff options
author | eb | 2007-01-30 02:12:05 +0000 |
---|---|---|
committer | eb | 2007-01-30 02:12:05 +0000 |
commit | 6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e (patch) | |
tree | 033696613d2bd899d9e8178827d2bc0aad609771 /config/grc_mblock.m4 | |
parent | b8a177591928973eb863cc3690fb381306830bbd (diff) | |
download | gnuradio-6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e.tar.gz gnuradio-6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e.tar.bz2 gnuradio-6ff1faed9d4c7095ab2d07b99478fe46e35f0e1e.zip |
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
Diffstat (limited to 'config/grc_mblock.m4')
-rw-r--r-- | config/grc_mblock.m4 | 10 |
1 files changed, 10 insertions, 0 deletions
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 |