package/jack2: explicitly {dis, en}able opus and readline

Explicitly disable or enable opus and readline which have been added by
commits 055cf58842 and
f658b1934f

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2022-03-22 18:48:39 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 930db465d9
commit 618a23100f

View File

@ -21,10 +21,16 @@ endif
ifeq ($(BR2_PACKAGE_OPUS),y)
JACK2_DEPENDENCIES += opus
JACK2_CONF_OPTS += --opus=yes
else
JACK2_CONF_OPTS += --opus=no
endif
ifeq ($(BR2_PACKAGE_READLINE),y)
JACK2_DEPENDENCIES += readline
JACK2_CONF_OPTS += --readline=yes
else
JACK2_CONF_OPTS += --readline=no
endif
ifeq ($(BR2_PACKAGE_JACK2_LEGACY),y)