Browse Source

Never build pulseaudio driver for MacOS

tags/1.9.8
falkTX 7 years ago
parent
commit
376264d97d
2 changed files with 10 additions and 0 deletions
  1. +8
    -0
      Makefile
  2. +2
    -0
      source/Makefile.mk

+ 8
- 0
Makefile View File

@@ -744,9 +744,13 @@ else
endif
ifeq ($(HAVE_HYLIA),true)
@printf -- "Link support: $(ANS_YES)\n"
else
ifeq ($(MACOS_OLD),true)
@printf -- "Link support: $(ANS_NO) $(mZ)MacOS >= 10.10 only$(mE)\n"
else
@printf -- "Link support: $(ANS_NO) $(mZ)Linux, MacOS and Windows only$(mE)\n"
endif
endif
ifeq ($(HAVE_LIBLO),true)
@printf -- "OSC support: $(ANS_YES)\n"
else
@@ -766,11 +770,15 @@ else
@printf -- "ALSA: $(ANS_NO) $(mZ)Linux only$(mE)\n"
endif
ifeq ($(UNIX),true)
ifneq ($(MACOS),true)
ifeq ($(HAVE_PULSEAUDIO),true)
@printf -- "PulseAudio: $(ANS_YES)\n"
else
@printf -- "PulseAudio: $(ANS_NO) $(mS)Missing PulseAudio$(mE)\n"
endif
else
@printf -- "PulseAudio: $(ANS_NO) $(mZ)Not available for MacOS$(mE)\n"
endif
else
@printf -- "PulseAudio: $(ANS_NO) $(mZ)Only available for Unix systems$(mE)\n"
endif


+ 2
- 0
source/Makefile.mk View File

@@ -224,8 +224,10 @@ HAVE_X11 = $(shell pkg-config --exists x11 && echo true)
endif

ifeq ($(UNIX),true)
ifneq ($(MACOS),true)
HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
endif
endif

HAVE_FFMPEG = $(shell pkg-config --exists libavcodec libavformat libavutil && echo true)
HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)


Loading…
Cancel
Save