summaryrefslogtreecommitdiff
path: root/gr-howto-write-a-block/config/gr_standalone.m4
diff options
context:
space:
mode:
authorEric Blossom2010-12-06 20:02:51 -0800
committerEric Blossom2010-12-06 20:02:51 -0800
commit59a1eeb1b18483ec716afde24df3f0593ed5085c (patch)
tree4ccaeb180e239133d7d334e087ee02296141d403 /gr-howto-write-a-block/config/gr_standalone.m4
parent97a15322fbff109badfcca680bc860d508176bee (diff)
downloadgnuradio-59a1eeb1b18483ec716afde24df3f0593ed5085c.tar.gz
gnuradio-59a1eeb1b18483ec716afde24df3f0593ed5085c.tar.bz2
gnuradio-59a1eeb1b18483ec716afde24df3f0593ed5085c.zip
Update comments for --enable-guile, reflecting that it's disabled by default.
Diffstat (limited to 'gr-howto-write-a-block/config/gr_standalone.m4')
-rw-r--r--gr-howto-write-a-block/config/gr_standalone.m44
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-howto-write-a-block/config/gr_standalone.m4 b/gr-howto-write-a-block/config/gr_standalone.m4
index d4acaec2f..beb98204c 100644
--- a/gr-howto-write-a-block/config/gr_standalone.m4
+++ b/gr-howto-write-a-block/config/gr_standalone.m4
@@ -130,9 +130,11 @@ m4_define([GR_STANDALONE],
)
AM_CONDITIONAL([PYTHON], [test x$enable_python = xyes])
+ dnl Allow user to choose whether to generate SWIG/Guile
+ dnl Default is disabled
AC_ARG_ENABLE([guile],
[AS_HELP_STRING([--enable-guile],
- [generate SWIG/Guile components (default is yes)])],
+ [generate SWIG/Guile components (default is no)])],
[case "${enableval}" in
yes) enable_guile=yes ;;
no) enable_guile=no ;;