Sequencer updates...

This commit is contained in:
Jaroslav Kysela 1998-12-27 00:58:42 +00:00
parent 5074f0459e
commit 4518e4ca8e
4 changed files with 6 additions and 4 deletions

View file

@ -30,5 +30,6 @@ SAVE_LIBRARY_VERSION
AC_OUTPUT(Makefile doc/Makefile include/Makefile src/Makefile \ AC_OUTPUT(Makefile doc/Makefile include/Makefile src/Makefile \
src/control/Makefile src/mixer/Makefile src/pcm/Makefile \ src/control/Makefile src/mixer/Makefile src/pcm/Makefile \
src/rawmidi/Makefile test/Makefile utils/Makefile \ src/rawmidi/Makefile src/seq/Makefile \
test/Makefile utils/Makefile \
utils/alsa-lib.spec) utils/alsa-lib.spec)

View file

@ -4,7 +4,7 @@ sysinclude_HEADERS = asoundlib.h
# This is the order they will be concatenated into asoundlib.h! # This is the order they will be concatenated into asoundlib.h!
# #
header_files=header.h version.h error.h control.h mixer.h pcm.h rawmidi.h \ header_files=header.h version.h error.h control.h mixer.h pcm.h rawmidi.h \
footer.h seq.h footer.h
noinst_HEADERS=$(header_files) noinst_HEADERS=$(header_files)

View file

@ -23,6 +23,7 @@
#define __ASOUNDLIB_H #define __ASOUNDLIB_H
#include <linux/asound.h> #include <linux/asound.h>
#include <linux/asequencer.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>

View file

@ -1,9 +1,9 @@
SUBDIRS=control mixer pcm rawmidi SUBDIRS=control mixer pcm rawmidi seq
lib_LTLIBRARIES = libasound.la lib_LTLIBRARIES = libasound.la
libasound_la_SOURCES = error.c libasound_la_SOURCES = error.c
libasound_la_LIBADD = control/libcontrol.la mixer/libmixer.la pcm/libpcm.la \ libasound_la_LIBADD = control/libcontrol.la mixer/libmixer.la pcm/libpcm.la \
rawmidi/librawmidi.la rawmidi/librawmidi.la seq/libseq.la
libasound_la_LDFLAGS = -version-info 3:0:3 libasound_la_LDFLAGS = -version-info 3:0:3
control/libcontrol.la: control/libcontrol.la: