[Freeswitch-svn] [commit] r8371 - in freeswitch/trunk: . build/config
Freeswitch SVN
stkn at freeswitch.org
Mon May 12 15:12:37 EDT 2008
Author: stkn
Date: Mon May 12 15:12:37 2008
New Revision: 8371
Modified:
freeswitch/trunk/build/config/ax_check_java.m4
freeswitch/trunk/configure.in
Log:
Add AS_HELP_STRING to options missing it, fix --disable-core-libedit-support value handling after rename (oops)
Modified: freeswitch/trunk/build/config/ax_check_java.m4
==============================================================================
--- freeswitch/trunk/build/config/ax_check_java.m4 (original)
+++ freeswitch/trunk/build/config/ax_check_java.m4 Mon May 12 15:12:37 2008
@@ -9,9 +9,9 @@
AC_DEFUN([AX_CHECK_JAVA],
[
AC_ARG_WITH([java],
- AC_HELP_STRING([ --with-java=PFX], [prefix where 'java' is installed.]),
- [with_java_prefix=$withval],
- [with_java_prefix=${JAVA_INSTALL_PATH:-/usr/java/j2sdk1.4.1_01}])
+ [AC_HELP_STRING([--with-java=PFX], [prefix where 'java' is installed.])],
+ [with_java_prefix="$withval"],
+ [with_java_prefix="${JAVA_INSTALL_PATH:-/usr/java/j2sdk1.4.1_01}"])
have_java='no'
LIB_JAVA=''
JAVA_FLAGS=''
Modified: freeswitch/trunk/configure.in
==============================================================================
--- freeswitch/trunk/configure.in (original)
+++ freeswitch/trunk/configure.in Mon May 12 15:12:37 2008
@@ -31,7 +31,8 @@
AC_SUBST(switch_builddir)
# Where to install the modules
-AC_ARG_WITH(modinstdir, [ --with-modinstdir (default=$prefix/mod)], modinstdir=$withval, modinstdir="${prefix}/mod")
+AC_ARG_WITH([modinstdir],
+ [AS_HELP_STRING([--with-modinstdir=DIR], [Install modules into this location (default: $prefix/mod)])], [modinstdir="$withval"], [modinstdir="${prefix}/mod"])
AC_SUBST(modinstdir)
AC_DEFINE_UNQUOTED([SWITCH_MOD_DIR],"${modinstdir}",[where to install the modules to])
@@ -408,10 +409,10 @@
AC_SUBST(LIBCURL_DEPS)
AC_ARG_ENABLE(core-odbc-support,
- [ --enable-core-odbc-support Compile with ODBC Support],,[enable_core_odbc_support="no"])
+ [AS_HELP_STRING([--enable-core-odbc-support], [Compile with ODBC Support])],,[enable_core_odbc_support="no"])
AC_ARG_ENABLE(core-libedit-support,
- [ --disable-core-libedit-support Compile without libedit Support],,[enable_core_libedit_support="yes"])
+ [AS_HELP_STRING([--disable-core-libedit-support], [Compile without libedit Support])], [enable_core_libedit_support="$enableval"], [enable_core_libedit_support="yes"])
if test "$enable_core_libedit_support" = "yes" ; then
AC_CHECK_LIB(ncurses, tgetent,,
More information about the Freeswitch-svn
mailing list