configure: Disable Ruby bindings by default.
The SWIG Ruby bindings do not build cleanly from scratch. They need an existing installation of comedilib. So disable them in the default configuration. They can be enabled with the --enable-ruby-bindings configure option. Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
This commit is contained in:
parent
ee2986755a
commit
82456b6f98
1 changed files with 2 additions and 2 deletions
|
@ -133,8 +133,8 @@ AS_COMPILER_FLAG([-Wno-unused-function],[PYTHON_QUIET="$PYTHON_QUIET -Wno-unused
|
|||
AC_SUBST(PYTHON_QUIET)
|
||||
|
||||
# ruby
|
||||
AC_ARG_ENABLE([ruby-binding], [ --disable-ruby-binding Disable building of Ruby binding],
|
||||
[ENABLE_RUBY=$enableval], [ENABLE_RUBY="yes"])
|
||||
AC_ARG_ENABLE([ruby-binding], [ --enable-ruby-binding Enable building of Ruby binding],
|
||||
[ENABLE_RUBY=$enableval], [ENABLE_RUBY="no"])
|
||||
if test "$ENABLE_RUBY" == "yes" && test "$SWIG" != "no"; then
|
||||
AC_PATH_PROG(RUBY, ruby, no)
|
||||
if test "$RUBY" != "no" ; then
|
||||
|
|
Loading…
Add table
Reference in a new issue