diff options
author | Jaroslav Kysela <perex@perex.cz> | 2023-05-16 15:38:24 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2023-05-16 15:54:05 +0200 |
commit | ee3965f6fac6c8b003acb097191125070708cccb (patch) | |
tree | 587e4084928e96c625d602007fcca58c89a8094c /configure.ac | |
parent | 7812ddb26566d86a8614c34a926447026bbd451a (diff) | |
download | alsa-utils-master.tar.gz |
The microphone arrays for Intel platforms are described in the
ACPI NHLT table. This table is available in sysfs. Parse this
information and use a more common format (json) for output. This
information is usable for the further DSP processing.
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e079e24..c91817a 100644 --- a/configure.ac +++ b/configure.ac @@ -189,6 +189,16 @@ AC_ARG_ENABLE(alsaloop, esac],[alsaloop=true]) AM_CONDITIONAL(ALSALOOP, test x$alsaloop = xtrue) +dnl Disable nhlt +AC_ARG_ENABLE(nhlt, + AS_HELP_STRING([--disable-nhlt], [Disable nhlt packaging]), + [case "${enableval}" in + yes) nhlt=true ;; + no) nhlt=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-nhlt) ;; + esac],[nhlt=true]) +AM_CONDITIONAL(NHLT, test x$nhlt = xtrue) + xmlto_available="" AC_ARG_ENABLE(xmlto, AS_HELP_STRING([--disable-xmlto], [Disable man page creation via xmlto]), @@ -475,4 +485,5 @@ AC_OUTPUT(Makefile alsactl/Makefile alsactl/init/Makefile \ seq/aplaymidi/Makefile seq/aseqdump/Makefile seq/aseqnet/Makefile \ speaker-test/Makefile speaker-test/samples/Makefile \ alsaloop/Makefile alsa-info/Makefile \ - axfer/Makefile axfer/test/Makefile) + axfer/Makefile axfer/test/Makefile \ + nhlt/Makefile) |