Codebase list squeezelite / 851ff23
Portaudio makefile + fix typo causing non mmap alsa to break Adrian Smith 11 years ago
2 changed file(s) with 7 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 # Make with portaudio rather than direct alsa
1 OPTS = -DPORTAUDIO
2 LDFLAGS = -lportaudio -lpthread -ldl -lrt
3 EXECUTABLE = squeezelite-pa
4
5 include Makefile
3535
3636 // for non mmap output we rely on ALSA to do the conversion and just open the device in native 32bit native endian
3737 static snd_pcm_format_t fmts_writei[] = {
38 #if IS_LITTLE_ENDIAN
38 #if LITTLE_ENDIAN
3939 SND_PCM_FORMAT_S32_LE,
4040 #else
4141 SND_PCM_FORMAT_S32_BE,