mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
The sequencer API is totally recoded with the style of "encapsulation" in other api. The structure becomes opaque and accessed only via functions. Other changes: - There is no longer group in client and port info. - snd_seq_query_subs_t is renamed to snd_seq_query_subscribe_t. - snd_seq_delete_port takes only the port id argument instead of port_info structure. - snd_seq_input/output_buffer_size are renamed as snd_seq_get_input/output_buffer_size. Similarly snd_seq_resize_input/output_buffer are renamed as snd_seq_set_input/output_buffer_size. - snd_seq_get_named_queue is renamed to snd_seq_query_named_queue. - Sync codes are removed temporarily from API. - Subscription conditions are accessed via the corresponding functions. convert_time is named now as time_update. - snd_seq_get/set_queue_owner are removed. Use snd_seq_get/set_queue_info instead. - Instrument put/get/remove structure is unified as snd_instr_header_t.
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
sysincludedir = ${includedir}/sys
|
|
sysinclude_HEADERS = asoundlib.h
|
|
|
|
# This is the order they will be concatenated into asoundlib.h!
|
|
#
|
|
header_files=header.h version.h global.h input.h output.h error.h \
|
|
conf.h pcm.h rawmidi.h timer.h \
|
|
hwdep.h hwdep_m4.h control.h \
|
|
mixer.h \
|
|
seq_event.h seq.h seqmid.h seq_midi_event.h \
|
|
conv.h instr.h footer.h
|
|
|
|
noinst_HEADERS=$(header_files) search.h list.h aserver.h local.h
|
|
|
|
asoundlib.h: $(header_files)
|
|
cat $^ > $@
|
|
|
|
version.h: stamp-vh
|
|
@:
|
|
|
|
stamp-vh: $(top_builddir)/configure.in
|
|
@echo "/*" > ver.tmp
|
|
@echo " * version.h" >> ver.tmp
|
|
@echo " */" >> ver.tmp
|
|
@echo "" >> ver.tmp
|
|
@echo "#define SND_LIB_MAJOR $(SND_LIB_MAJOR)" >> ver.tmp
|
|
@echo "#define SND_LIB_MINOR $(SND_LIB_MINOR)" >> ver.tmp
|
|
@echo "#define SND_LIB_SUBMINOR $(SND_LIB_SUBMINOR)" >> ver.tmp
|
|
@echo "#define SND_LIB_VERSION ((SND_LIB_MAJOR<<16)|\\" >> ver.tmp
|
|
@echo " (SND_LIB_MINOR<<8)|\\" >> ver.tmp
|
|
@echo " SND_LIB_SUBMINOR)" >> ver.tmp
|
|
@echo "#define SND_LIB_VERSION_STR \"$(SND_LIB_VERSION)\"" >> ver.tmp
|
|
@echo >> ver.tmp
|
|
@cmp -s version.h ver.tmp \
|
|
|| (echo "Updating version.h"; \
|
|
cp ver.tmp version.h; \
|
|
echo timestamp > stamp-vh)
|
|
-@rm -f ver.tmp
|
|
|
|
INCLUDES=-I$(top_srcdir)/include
|