- Timestamp:
- 06/17/07 21:37:07 (17 months ago)
- Files:
-
- 1 modified
-
trunk/configure.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.in
r158 r166 56 56 [AC_HELP_STRING([--disable-perl], 57 57 [Disables perl language bindings @<:@default=auto@:>@])], 58 [ac_perl_enabled=$enableval], [ac_perl_enabled=yes]) 58 [ac_perl_enabled=$enableval], 59 [AC_CHECK_PROG([ac_perl_enabled],[perl],[yes],[no])]) 59 60 60 61 if test "$ac_perl_enabled" = yes; then … … 66 67 [AC_HELP_STRING([--disable-python], 67 68 [Disables python language bindings @<:@default=auto@:>@])], 68 [ac_python_enabled=$enableval], [ac_python_enabled=yes]) 69 [ac_python_enabled=$enableval], 70 [AC_CHECK_PROG([ac_python_enabled],[python[$PYTHON_VERSION]],[yes],[no])]) 69 71 70 72 if test "$ac_python_enabled" = yes; then … … 76 78 [AC_HELP_STRING([--disable-ruby], 77 79 [Disables ruby language bindings @<:@default=auto@:>@])], 78 [ac_ruby_enabled=$enableval], [ac_ruby_enabled=yes]) 80 [ac_ruby_enabled=$enableval], 81 [AC_CHECK_PROG([ac_ruby_enabled],[ruby],[yes],[no])]) 79 82 80 83 if test "$ac_ruby_enabled" = yes; then … … 86 89 [AC_HELP_STRING([--enable-tcl], 87 90 [Enables tcl language bindings @<:@default=off@:>@])], 88 [ac_tcl_enabled=$enableval], [ac_tcl_enabled=no]) 91 [ac_tcl_enabled=$enableval], 92 [AC_CHECK_PROG([ac_tcl_enabled],[tclsh],[yes],[no])]) 89 93 90 94 if test "$ac_tcl_enabled" = yes; then
