diff options
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | m4/pretty_print.m4 | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 3e5561d42..b8c151156 100644 --- a/configure.ac +++ b/configure.ac @@ -1478,7 +1478,7 @@ results(mad, [MAD]) results(mpg123, [MPG123]) results(mp4, [MP4]) results(mpc, [Musepack]) -results(oggflac, [OggFLAC]) +results(oggflac, [OggFLAC], flac) echo -ne '\n\t' results(with_tremor, [OggTremor]) results(vorbis, [OggVorbis]) diff --git a/m4/pretty_print.m4 b/m4/pretty_print.m4 index 37efe5de1..a22357a8d 100644 --- a/m4/pretty_print.m4 +++ b/m4/pretty_print.m4 @@ -1,17 +1,19 @@ AC_DEFUN([results], [ dnl This is a hack to allow "with" names, otherwise "enable". - num=`expr match $1 "with"` + num=`expr match $1 'with'` if test "$num" != "0"; then var="`echo '$'$1`" else var="`echo '$'enable_$1`" fi - echo -n "(" + echo -n '(' if eval "test x$var = xyes"; then - echo -n "+" + echo -n '+' + elif test -n "$3" && eval "test x$var = x$3"; then + echo -n '+' else - echo -n "-" + echo -n '-' fi echo -n "$2) " ]) |