All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] configure.in: use AS_HELP_STRING everywhere
@ 2012-04-18 14:29 Mike Frysinger
  2012-04-18 16:17 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2012-04-18 14:29 UTC (permalink / raw)
  To: alsa-devel

This macro takes care of spacing for us.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 configure.in |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/configure.in b/configure.in
index 9404df0..e7bb4ca 100644
--- a/configure.in
+++ b/configure.in
@@ -76,7 +76,7 @@ CURSES_CFLAGS=""
 alsamixer=
 if test "$have_mixer" = "yes"; then
 AC_ARG_ENABLE(alsamixer,
-     [  --disable-alsamixer     Disable alsamixer compilation],
+     AS_HELP_STRING([--disable-alsamixer], [Disable alsamixer compilation]),
      [case "${enableval}" in
        yes) alsamixer=true ;;
        no)  alsamixer=false ;;
@@ -87,7 +87,7 @@ AM_CONDITIONAL(ALSAMIXER, test x$alsamixer = xtrue)
 
 dnl Disable alsaconf
 AC_ARG_ENABLE(alsaconf,
-     [  --disable-alsaconf      Disable alsaconf packaging],
+     AS_HELP_STRING([--disable-alsaconf], [Disable alsaconf packaging]),
      [case "${enableval}" in
        yes) alsaconf=true ;;
        no)  alsaconf=false ;;
@@ -97,7 +97,7 @@ AM_CONDITIONAL(ALSACONF, test x$alsaconf = xtrue)
 
 dnl Disable alsaloop
 AC_ARG_ENABLE(alsaloop,
-     [  --disable-alsaloop      Disable alsaloop packaging],
+     AS_HELP_STRING([--disable-alsaloop], [Disable alsaloop packaging]),
      [case "${enableval}" in
        yes) alsaloop=true ;;
        no)  alsaloop=false ;;
@@ -124,7 +124,7 @@ dnl Checks for header files.
 AC_HEADER_STDC
 if test x$alsamixer = xtrue; then
   AC_ARG_WITH(curses,
-    [  --with-curses libname   Specify the curses library to use (default=auto)],
+    AS_HELP_STRING([--with-curses=libname], [Specify the curses library to use (default=auto)]),
     curseslib="$withval",
     curseslib="auto")
   CURSESLIBDIR=""
@@ -283,7 +283,7 @@ mydatadir="$dir/alsa"
 AC_DEFINE_UNQUOTED(DATADIR, "$mydatadir", [directory containing alsa configuration])
 
 AC_ARG_WITH(testsound,
-  [  --with-testsound=file        give the path of test sound file for alsaconf],
+  AS_HELP_STRING([--with-testsound=file], [give the path of test sound file for alsaconf]),
   TESTSOUND="$withval",
   TESTSOUND="$dir/test.wav")
 AC_SUBST(TESTSOUND)
-- 
1.7.8.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] configure.in: use AS_HELP_STRING everywhere
  2012-04-18 14:29 [PATCH] configure.in: use AS_HELP_STRING everywhere Mike Frysinger
@ 2012-04-18 16:17 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2012-04-18 16:17 UTC (permalink / raw)
  To: Mike Frysinger; +Cc: alsa-devel

At Wed, 18 Apr 2012 10:29:18 -0400,
Mike Frysinger wrote:
> 
> This macro takes care of spacing for us.
> 
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Applied, too.  Thanks.


Takashi

> ---
>  configure.in |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/configure.in b/configure.in
> index 9404df0..e7bb4ca 100644
> --- a/configure.in
> +++ b/configure.in
> @@ -76,7 +76,7 @@ CURSES_CFLAGS=""
>  alsamixer=
>  if test "$have_mixer" = "yes"; then
>  AC_ARG_ENABLE(alsamixer,
> -     [  --disable-alsamixer     Disable alsamixer compilation],
> +     AS_HELP_STRING([--disable-alsamixer], [Disable alsamixer compilation]),
>       [case "${enableval}" in
>         yes) alsamixer=true ;;
>         no)  alsamixer=false ;;
> @@ -87,7 +87,7 @@ AM_CONDITIONAL(ALSAMIXER, test x$alsamixer = xtrue)
>  
>  dnl Disable alsaconf
>  AC_ARG_ENABLE(alsaconf,
> -     [  --disable-alsaconf      Disable alsaconf packaging],
> +     AS_HELP_STRING([--disable-alsaconf], [Disable alsaconf packaging]),
>       [case "${enableval}" in
>         yes) alsaconf=true ;;
>         no)  alsaconf=false ;;
> @@ -97,7 +97,7 @@ AM_CONDITIONAL(ALSACONF, test x$alsaconf = xtrue)
>  
>  dnl Disable alsaloop
>  AC_ARG_ENABLE(alsaloop,
> -     [  --disable-alsaloop      Disable alsaloop packaging],
> +     AS_HELP_STRING([--disable-alsaloop], [Disable alsaloop packaging]),
>       [case "${enableval}" in
>         yes) alsaloop=true ;;
>         no)  alsaloop=false ;;
> @@ -124,7 +124,7 @@ dnl Checks for header files.
>  AC_HEADER_STDC
>  if test x$alsamixer = xtrue; then
>    AC_ARG_WITH(curses,
> -    [  --with-curses libname   Specify the curses library to use (default=auto)],
> +    AS_HELP_STRING([--with-curses=libname], [Specify the curses library to use (default=auto)]),
>      curseslib="$withval",
>      curseslib="auto")
>    CURSESLIBDIR=""
> @@ -283,7 +283,7 @@ mydatadir="$dir/alsa"
>  AC_DEFINE_UNQUOTED(DATADIR, "$mydatadir", [directory containing alsa configuration])
>  
>  AC_ARG_WITH(testsound,
> -  [  --with-testsound=file        give the path of test sound file for alsaconf],
> +  AS_HELP_STRING([--with-testsound=file], [give the path of test sound file for alsaconf]),
>    TESTSOUND="$withval",
>    TESTSOUND="$dir/test.wav")
>  AC_SUBST(TESTSOUND)
> -- 
> 1.7.8.5
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-04-18 16:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-18 14:29 [PATCH] configure.in: use AS_HELP_STRING everywhere Mike Frysinger
2012-04-18 16:17 ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.