mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:35:42 +01:00
bee994f509
- added workaround for alsa-lib (pthread configuration parsing issue) - the workaround must be activated manually using ('--workaround serialopen') - fixed avail_min initialization (caused high CPU usage or xruns) - fixed shared buffer initialization (both capture and playback buffers must have equal number of samples in this config) Signed-off-by: Jaroslav Kysela <perex@perex.cz>
14 lines
307 B
Makefile
14 lines
307 B
Makefile
INCLUDES = -I$(top_srcdir)/include
|
|
LDADD = -lm
|
|
CFLAGS += -D_GNU_SOURCE
|
|
if HAVE_SAMPLERATE
|
|
LDADD += -lsamplerate
|
|
endif
|
|
# LDFLAGS = -static
|
|
# CFLAGS += -g -Wall
|
|
|
|
bin_PROGRAMS = alsaloop
|
|
alsaloop_SOURCES = alsaloop.c pcmjob.c control.c
|
|
noinst_HEADERS = alsaloop.h
|
|
man_MANS = alsaloop.1
|
|
EXTRA_DIST = alsaloop.1
|