All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] configure.in: Fix xmlto detection
@ 2011-01-05 11:01 Ozan Çağlayan
  2011-01-11 18:55 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Ozan Çağlayan @ 2011-01-05 11:01 UTC (permalink / raw)
  To: alsa-devel

xmlto was never detected when alsaconf is disabled leading to a missing
alsactl_init man page.
---
 configure.in |   12 +++++-------
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/configure.in b/configure.in
index 2d6c80c..561ca46 100644
--- a/configure.in
+++ b/configure.in
@@ -102,13 +102,11 @@ AC_ARG_ENABLE(alsaloop,
 AM_CONDITIONAL(ALSALOOP, test x$alsaloop = xtrue)
 
 xmlto=""
-if test x"$alsaconf" = xtrue; then
-   AC_ARG_ENABLE(xmlto,
-     AS_HELP_STRING([--disable-xmlto], [Disable man page creation via xmlto]),
-     xmlto="$enableval", xmlto="yes")
-   if test "$xmlto" = "yes"; then
-      AC_CHECK_PROG([xmlto], [xmlto], [yes])
-   fi
+AC_ARG_ENABLE(xmlto,
+ AS_HELP_STRING([--disable-xmlto], [Disable man page creation via xmlto]),
+ xmlto="$enableval", xmlto="yes")
+if test "$xmlto" = "yes"; then
+  AC_CHECK_PROG([xmlto], [xmlto], [yes])
 fi
 AM_CONDITIONAL(USE_XMLTO, test x"$xmlto" = xyes)
 
-- 
1.7.3.4

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

* Re: [PATCH] configure.in: Fix xmlto detection
  2011-01-05 11:01 [PATCH] configure.in: Fix xmlto detection Ozan Çağlayan
@ 2011-01-11 18:55 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2011-01-11 18:55 UTC (permalink / raw)
  To: Ozan Çağlayan; +Cc: alsa-devel

At Wed,  5 Jan 2011 13:01:04 +0200,
Ozan Çağlayan wrote:
> 
> xmlto was never detected when alsaconf is disabled leading to a missing
> alsactl_init man page.

Thanks, applied now.


Takashi

> ---
>  configure.in |   12 +++++-------
>  1 files changed, 5 insertions(+), 7 deletions(-)
> 
> diff --git a/configure.in b/configure.in
> index 2d6c80c..561ca46 100644
> --- a/configure.in
> +++ b/configure.in
> @@ -102,13 +102,11 @@ AC_ARG_ENABLE(alsaloop,
>  AM_CONDITIONAL(ALSALOOP, test x$alsaloop = xtrue)
>  
>  xmlto=""
> -if test x"$alsaconf" = xtrue; then
> -   AC_ARG_ENABLE(xmlto,
> -     AS_HELP_STRING([--disable-xmlto], [Disable man page creation via xmlto]),
> -     xmlto="$enableval", xmlto="yes")
> -   if test "$xmlto" = "yes"; then
> -      AC_CHECK_PROG([xmlto], [xmlto], [yes])
> -   fi
> +AC_ARG_ENABLE(xmlto,
> + AS_HELP_STRING([--disable-xmlto], [Disable man page creation via xmlto]),
> + xmlto="$enableval", xmlto="yes")
> +if test "$xmlto" = "yes"; then
> +  AC_CHECK_PROG([xmlto], [xmlto], [yes])
>  fi
>  AM_CONDITIONAL(USE_XMLTO, test x"$xmlto" = xyes)
>  
> -- 
> 1.7.3.4
> 
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
> 
_______________________________________________
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:[~2011-01-11 18:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-05 11:01 [PATCH] configure.in: Fix xmlto detection Ozan Çağlayan
2011-01-11 18:55 ` 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.