mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 14:38:22 +01:00
configure: allow contitional compilation of alsaucm
If alsa-lib have been compiled with --disable-ucm, alsaucm can't be built. Detection is dynamic, no configure command line option is available for now. Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
e1745a69fe
commit
554706585c
2 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
AM_CPPFLAGS=-I$(top_srcdir)/include
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|
||||||
|
|
||||||
SUBDIRS = include alsactl alsaucm utils m4 po alsa-info
|
SUBDIRS = include alsactl utils m4 po alsa-info
|
||||||
if ALSAMIXER
|
if ALSAMIXER
|
||||||
SUBDIRS += alsamixer
|
SUBDIRS += alsamixer
|
||||||
endif
|
endif
|
||||||
|
@ -22,6 +22,9 @@ endif
|
||||||
if HAVE_SEQ
|
if HAVE_SEQ
|
||||||
SUBDIRS += seq
|
SUBDIRS += seq
|
||||||
endif
|
endif
|
||||||
|
if HAVE_UCM
|
||||||
|
SUBDIRS += alsaucm
|
||||||
|
endif
|
||||||
|
|
||||||
EXTRA_DIST= TODO gitcompile
|
EXTRA_DIST= TODO gitcompile
|
||||||
AUTOMAKE_OPTIONS=foreign
|
AUTOMAKE_OPTIONS=foreign
|
||||||
|
|
|
@ -48,6 +48,8 @@ AC_CHECK_HEADERS([alsa/rawmidi.h], [have_rawmidi="yes"], [have_rawmidi="no"],
|
||||||
[#include <alsa/asoundlib.h>])
|
[#include <alsa/asoundlib.h>])
|
||||||
AC_CHECK_HEADERS([alsa/seq.h], [have_seq="yes"], [have_seq="no"],
|
AC_CHECK_HEADERS([alsa/seq.h], [have_seq="yes"], [have_seq="no"],
|
||||||
[#include <alsa/asoundlib.h>])
|
[#include <alsa/asoundlib.h>])
|
||||||
|
AC_CHECK_HEADERS([alsa/use-case.h], [have_ucm="yes"], [have_ucm="no"],
|
||||||
|
[#include <alsa/asoundlib.h>])
|
||||||
AC_CHECK_HEADERS([samplerate.h], [have_samplerate="yes"], [have_samplerate="no"],
|
AC_CHECK_HEADERS([samplerate.h], [have_samplerate="yes"], [have_samplerate="no"],
|
||||||
[#include <samplerate.h>])
|
[#include <samplerate.h>])
|
||||||
|
|
||||||
|
@ -55,6 +57,7 @@ AM_CONDITIONAL(HAVE_PCM, test "$have_pcm" = "yes")
|
||||||
AM_CONDITIONAL(HAVE_MIXER, test "$have_mixer" = "yes")
|
AM_CONDITIONAL(HAVE_MIXER, test "$have_mixer" = "yes")
|
||||||
AM_CONDITIONAL(HAVE_RAWMIDI, test "$have_rawmidi" = "yes")
|
AM_CONDITIONAL(HAVE_RAWMIDI, test "$have_rawmidi" = "yes")
|
||||||
AM_CONDITIONAL(HAVE_SEQ, test "$have_seq" = "yes")
|
AM_CONDITIONAL(HAVE_SEQ, test "$have_seq" = "yes")
|
||||||
|
AM_CONDITIONAL(HAVE_UCM, test "$have_ucm" = "yes")
|
||||||
AM_CONDITIONAL(HAVE_SAMPLERATE, test "$have_samplerate" = "yes")
|
AM_CONDITIONAL(HAVE_SAMPLERATE, test "$have_samplerate" = "yes")
|
||||||
|
|
||||||
dnl Check for librt
|
dnl Check for librt
|
||||||
|
|
Loading…
Reference in a new issue