diff options
author | Eric Blossom <eb@comsec.com> | 2010-12-06 20:02:51 -0800 |
---|---|---|
committer | Eric Blossom <eb@comsec.com> | 2010-12-06 20:02:51 -0800 |
commit | 59a1eeb1b18483ec716afde24df3f0593ed5085c (patch) | |
tree | 4ccaeb180e239133d7d334e087ee02296141d403 | |
parent | 97a15322fbff109badfcca680bc860d508176bee (diff) |
Update comments for --enable-guile, reflecting that it's disabled by default.
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | gr-howto-write-a-block/config/gr_standalone.m4 | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 92b728a419..2366b988ce 100644 --- a/configure.ac +++ b/configure.ac @@ -149,9 +149,11 @@ AC_ARG_ENABLE([python], [enable_python=yes] ) +# Allow user to choose whether to generate SWIG/Guile +# 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 ;; diff --git a/gr-howto-write-a-block/config/gr_standalone.m4 b/gr-howto-write-a-block/config/gr_standalone.m4 index d4acaec2fe..beb98204c6 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 ;; |