Added hsearch_r for compatibility needs

This commit is contained in:
Abramo Bagnara 2000-06-12 17:30:46 +00:00
parent d3fa17a0a1
commit bc252d4d26
7 changed files with 437 additions and 5 deletions

View file

@ -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