- Timestamp:
- 06/01/07 17:23:38 (18 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
acinclude.m4 (modified) (2 diffs)
-
configure.in (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/acinclude.m4
r108 r148 8 8 AC_DEFUN([IRDA_CHECK],[ 9 9 AC_ARG_ENABLE([irda], 10 [A S_HELP_STRING([--disable-irda],10 [AC_HELP_STRING([--disable-irda], 11 11 [Disables openftp irda support @<:@default=auto@:>@])], 12 12 [ac_irda_enabled=$enableval], [ac_irda_enabled=yes]) … … 33 33 AC_DEFUN([BLUETOOTH_CHECK],[ 34 34 AC_ARG_ENABLE([bluetooth], 35 [A S_HELP_STRING([--disable-bluetooth],35 [AC_HELP_STRING([--disable-bluetooth], 36 36 [Disables openftp bluetooth support @<:@default=auto@:>@])], 37 37 [ac_bluetooth_enabled=$enableval], [ac_bluetooth_enabled=yes]) -
trunk/configure.in
r114 r148 5 5 AM_INIT_AUTOMAKE(dist-bzip2) 6 6 AM_CONFIG_HEADER(config.h) 7 8 # note: AC_HELP_STRING is deprecated in autoconf 2.59 and later but 9 # AS_HELP_STRING is not available in autoconf 2.57 or earlier. 7 10 8 11 dnl AM_MAINTAINER_MODE … … 35 38 # check for optional swig rebuild 36 39 AC_ARG_ENABLE([swig], 37 [A S_HELP_STRING([--enable-swig],40 [AC_HELP_STRING([--enable-swig], 38 41 [Rebuild language bindings @<:@default=no@:>@])], 39 42 [case "${enableval}" in … … 49 52 # check for language bindings 50 53 AC_ARG_ENABLE([perl], 51 [A S_HELP_STRING([--disable-perl],54 [AC_HELP_STRING([--disable-perl], 52 55 [Disables perl language bindings @<:@default=auto@:>@])], 53 56 [ac_perl_enabled=$enableval], [ac_perl_enabled=yes]) … … 59 62 60 63 AC_ARG_ENABLE([python], 61 [A S_HELP_STRING([--disable-python],64 [AC_HELP_STRING([--disable-python], 62 65 [Disables python language bindings @<:@default=auto@:>@])], 63 66 [ac_python_enabled=$enableval], [ac_python_enabled=yes]) … … 69 72 70 73 AC_ARG_ENABLE([ruby], 71 [A S_HELP_STRING([--disable-ruby],74 [AC_HELP_STRING([--disable-ruby], 72 75 [Disables ruby language bindings @<:@default=auto@:>@])], 73 76 [ac_ruby_enabled=$enableval], [ac_ruby_enabled=yes]) … … 79 82 80 83 AC_ARG_ENABLE([tcl], 81 [A S_HELP_STRING([--enable-tcl],84 [AC_HELP_STRING([--enable-tcl], 82 85 [Enables tcl language bindings @<:@default=off@:>@])], 83 86 [ac_tcl_enabled=$enableval], [ac_tcl_enabled=no]) … … 91 94 dnl no need to build docs by default 92 95 AC_ARG_ENABLE(builddocs, 93 A S_HELP_STRING([--enable-builddocs],96 AC_HELP_STRING([--enable-builddocs], 94 97 [Compile documentation @<:@default=no@:>@]), 95 98 [case "${enableval}" in
