mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-28 05:40:23 -04:00
configure: Make sequencer dependent on rawmidi
The sequencer feature requires rawmidi implicitly, and it became more obvious with UMP support. Add the dependency check to configure script. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
76edab4e59
commit
6880219ad4
1 changed files with 6 additions and 0 deletions
|
|
@ -483,6 +483,12 @@ fi
|
|||
AC_SUBST(PYTHON_LIBS)
|
||||
AC_SUBST(PYTHON_INCLUDES)
|
||||
|
||||
if test "$build_rawmidi" != "yes"; then
|
||||
if test "$build_seq" = "yes"; then
|
||||
AC_ERROR([Cannot enable sequencer without rawmidi])
|
||||
fi
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL([BUILD_MIXER], [test x$build_mixer = xyes])
|
||||
AM_CONDITIONAL([BUILD_PCM], [test x$build_pcm = xyes])
|
||||
AM_CONDITIONAL([BUILD_RAWMIDI], [test x$build_rawmidi = xyes])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue