Add a small "hdajacksensetest" helper

I previously had a small python script doing the same thing,
but it depended on hda-analyzer, which always breaks when something
new is added to the codec proc file.

I got tired and rewrote it as a small C program instead, which I
hope will be a useful addition to alsa-tools.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
David Henningsson 2014-10-06 15:30:03 +02:00 committed by Takashi Iwai
parent eb6408a791
commit 7a7d94a031
5 changed files with 182 additions and 1 deletions

View file

@ -0,0 +1,10 @@
AC_INIT(hdajacksensetest, 0.20141006)
AM_INIT_AUTOMAKE(subdir-objects)
AM_MAINTAINER_MODE([enable])
AC_PROG_CC
AC_PROG_INSTALL
AC_HEADER_STDC
PKG_CHECK_MODULES([GLIB], [glib-2.0])
AC_OUTPUT(Makefile)