mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
src/Versions.in: Add guards for sequencer and rawmidi syms
Similarly like PCM and others, add the ifdef guards for new symbols for sequencer and rawmidi interfaces. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
2071eb8a44
commit
32e2c8d8a2
2 changed files with 12 additions and 0 deletions
|
|
@ -36,6 +36,7 @@ endif
|
||||||
if BUILD_RAWMIDI
|
if BUILD_RAWMIDI
|
||||||
SUBDIRS += rawmidi
|
SUBDIRS += rawmidi
|
||||||
libasound_la_LIBADD += rawmidi/librawmidi.la
|
libasound_la_LIBADD += rawmidi/librawmidi.la
|
||||||
|
VERSION_CPPFLAGS += -DHAVE_RAWMIDI_SYMS
|
||||||
endif
|
endif
|
||||||
if BUILD_HWDEP
|
if BUILD_HWDEP
|
||||||
SUBDIRS += hwdep
|
SUBDIRS += hwdep
|
||||||
|
|
@ -44,6 +45,7 @@ endif
|
||||||
if BUILD_SEQ
|
if BUILD_SEQ
|
||||||
SUBDIRS += seq
|
SUBDIRS += seq
|
||||||
libasound_la_LIBADD += seq/libseq.la
|
libasound_la_LIBADD += seq/libseq.la
|
||||||
|
VERSION_CPPFLAGS += -DHAVE_SEQ_SYMS
|
||||||
endif
|
endif
|
||||||
if BUILD_UCM
|
if BUILD_UCM
|
||||||
SUBDIRS += ucm
|
SUBDIRS += ucm
|
||||||
|
|
|
||||||
|
|
@ -169,10 +169,13 @@ ALSA_1.2.9 {
|
||||||
ALSA_1.2.10 {
|
ALSA_1.2.10 {
|
||||||
global:
|
global:
|
||||||
|
|
||||||
|
#ifdef HAVE_RAWMIDI_SYMS
|
||||||
@SYMBOL_PREFIX@snd_ump_*;
|
@SYMBOL_PREFIX@snd_ump_*;
|
||||||
|
#endif
|
||||||
@SYMBOL_PREFIX@snd_ctl_ump_next_device;
|
@SYMBOL_PREFIX@snd_ctl_ump_next_device;
|
||||||
@SYMBOL_PREFIX@snd_ctl_ump_endpoint_info;
|
@SYMBOL_PREFIX@snd_ctl_ump_endpoint_info;
|
||||||
@SYMBOL_PREFIX@snd_ctl_ump_block_info;
|
@SYMBOL_PREFIX@snd_ctl_ump_block_info;
|
||||||
|
#ifdef HAVE_SEQ_SYMS
|
||||||
@SYMBOL_PREFIX@snd_seq_ump_*;
|
@SYMBOL_PREFIX@snd_seq_ump_*;
|
||||||
@SYMBOL_PREFIX@snd_seq_client_info_get_midi_version;
|
@SYMBOL_PREFIX@snd_seq_client_info_get_midi_version;
|
||||||
@SYMBOL_PREFIX@snd_seq_client_info_get_ump_group_enabled;
|
@SYMBOL_PREFIX@snd_seq_client_info_get_ump_group_enabled;
|
||||||
|
|
@ -192,15 +195,22 @@ ALSA_1.2.10 {
|
||||||
@SYMBOL_PREFIX@snd_seq_port_info_set_ump_group;
|
@SYMBOL_PREFIX@snd_seq_port_info_set_ump_group;
|
||||||
@SYMBOL_PREFIX@snd_seq_set_client_midi_version;
|
@SYMBOL_PREFIX@snd_seq_set_client_midi_version;
|
||||||
@SYMBOL_PREFIX@snd_seq_set_client_ump_conversion;
|
@SYMBOL_PREFIX@snd_seq_set_client_ump_conversion;
|
||||||
|
#endif
|
||||||
} ALSA_1.2.9;
|
} ALSA_1.2.9;
|
||||||
|
|
||||||
ALSA_1.2.13 {
|
ALSA_1.2.13 {
|
||||||
|
#if defined(HAVE_SEQ_SYMS) || defined(HAVE_RAWMIDI_SYMS)
|
||||||
global:
|
global:
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_SEQ_SYMS
|
||||||
@SYMBOL_PREFIX@snd_seq_create_ump_endpoint;
|
@SYMBOL_PREFIX@snd_seq_create_ump_endpoint;
|
||||||
@SYMBOL_PREFIX@snd_seq_create_ump_block;
|
@SYMBOL_PREFIX@snd_seq_create_ump_block;
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_RAWMIDI_SYMS
|
||||||
@SYMBOL_PREFIX@snd_ump_endpoint_info_clear;
|
@SYMBOL_PREFIX@snd_ump_endpoint_info_clear;
|
||||||
@SYMBOL_PREFIX@snd_ump_endpoint_info_set_*;
|
@SYMBOL_PREFIX@snd_ump_endpoint_info_set_*;
|
||||||
@SYMBOL_PREFIX@snd_ump_block_info_clear;
|
@SYMBOL_PREFIX@snd_ump_block_info_clear;
|
||||||
@SYMBOL_PREFIX@snd_ump_block_info_set_*;
|
@SYMBOL_PREFIX@snd_ump_block_info_set_*;
|
||||||
|
#endif
|
||||||
} ALSA_1.2.10;
|
} ALSA_1.2.10;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue