diff options
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 a8fba4e03c..6e4bc4afe1 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 |