mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-11 13:30:05 -05:00
Added hsearch_r for compatibility needs
This commit is contained in:
parent
d3fa17a0a1
commit
bc252d4d26
7 changed files with 437 additions and 5 deletions
|
|
@ -1,11 +1,13 @@
|
|||
SUBDIRS=control mixer pcm rawmidi timer hwdep seq instr
|
||||
SUBDIRS=control mixer pcm rawmidi timer hwdep seq instr compat
|
||||
COMPATNUM=@LIBTOOL_VERSION_INFO@
|
||||
|
||||
lib_LTLIBRARIES = libasound.la
|
||||
libasound_la_SOURCES = error.c
|
||||
libasound_la_LIBADD = control/libcontrol.la mixer/libmixer.la pcm/libpcm.la \
|
||||
rawmidi/librawmidi.la timer/libtimer.la hwdep/libhwdep.la \
|
||||
seq/libseq.la instr/libinstr.la
|
||||
rawmidi/librawmidi.la timer/libtimer.la \
|
||||
hwdep/libhwdep.la seq/libseq.la instr/libinstr.la \
|
||||
compat/libcompat.la
|
||||
|
||||
libasound_la_LDFLAGS = -version-info $(COMPATNUM)
|
||||
|
||||
control/libcontrol.la:
|
||||
|
|
@ -32,4 +34,7 @@ seq/libseq.la:
|
|||
instr/libinstr.la:
|
||||
$(MAKE) -C instr libinstr.la
|
||||
|
||||
compat/libcompat.la:
|
||||
$(MAKE) -C compat libcompat.la
|
||||
|
||||
INCLUDES=-I$(top_srcdir)/include
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue