mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-12-22 23:46:31 +01:00
configure.in: use AS_HELP_STRING everywhere
This macro takes care of spacing for us. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
3a25a31285
commit
05d3bed5cd
1 changed files with 5 additions and 5 deletions
10
configure.in
10
configure.in
|
@ -76,7 +76,7 @@ CURSES_CFLAGS=""
|
||||||
alsamixer=
|
alsamixer=
|
||||||
if test "$have_mixer" = "yes"; then
|
if test "$have_mixer" = "yes"; then
|
||||||
AC_ARG_ENABLE(alsamixer,
|
AC_ARG_ENABLE(alsamixer,
|
||||||
[ --disable-alsamixer Disable alsamixer compilation],
|
AS_HELP_STRING([--disable-alsamixer], [Disable alsamixer compilation]),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) alsamixer=true ;;
|
yes) alsamixer=true ;;
|
||||||
no) alsamixer=false ;;
|
no) alsamixer=false ;;
|
||||||
|
@ -87,7 +87,7 @@ AM_CONDITIONAL(ALSAMIXER, test x$alsamixer = xtrue)
|
||||||
|
|
||||||
dnl Disable alsaconf
|
dnl Disable alsaconf
|
||||||
AC_ARG_ENABLE(alsaconf,
|
AC_ARG_ENABLE(alsaconf,
|
||||||
[ --disable-alsaconf Disable alsaconf packaging],
|
AS_HELP_STRING([--disable-alsaconf], [Disable alsaconf packaging]),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) alsaconf=true ;;
|
yes) alsaconf=true ;;
|
||||||
no) alsaconf=false ;;
|
no) alsaconf=false ;;
|
||||||
|
@ -97,7 +97,7 @@ AM_CONDITIONAL(ALSACONF, test x$alsaconf = xtrue)
|
||||||
|
|
||||||
dnl Disable alsaloop
|
dnl Disable alsaloop
|
||||||
AC_ARG_ENABLE(alsaloop,
|
AC_ARG_ENABLE(alsaloop,
|
||||||
[ --disable-alsaloop Disable alsaloop packaging],
|
AS_HELP_STRING([--disable-alsaloop], [Disable alsaloop packaging]),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) alsaloop=true ;;
|
yes) alsaloop=true ;;
|
||||||
no) alsaloop=false ;;
|
no) alsaloop=false ;;
|
||||||
|
@ -124,7 +124,7 @@ dnl Checks for header files.
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
if test x$alsamixer = xtrue; then
|
if test x$alsamixer = xtrue; then
|
||||||
AC_ARG_WITH(curses,
|
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="$withval",
|
||||||
curseslib="auto")
|
curseslib="auto")
|
||||||
CURSESLIBDIR=""
|
CURSESLIBDIR=""
|
||||||
|
@ -283,7 +283,7 @@ mydatadir="$dir/alsa"
|
||||||
AC_DEFINE_UNQUOTED(DATADIR, "$mydatadir", [directory containing alsa configuration])
|
AC_DEFINE_UNQUOTED(DATADIR, "$mydatadir", [directory containing alsa configuration])
|
||||||
|
|
||||||
AC_ARG_WITH(testsound,
|
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="$withval",
|
||||||
TESTSOUND="$dir/test.wav")
|
TESTSOUND="$dir/test.wav")
|
||||||
AC_SUBST(TESTSOUND)
|
AC_SUBST(TESTSOUND)
|
||||||
|
|
Loading…
Reference in a new issue