Browse Source

Correct 'make features' for haiku and bsd

tags/1.9.8
falkTX 8 years ago
parent
commit
7248eda66d
1 changed files with 14 additions and 11 deletions
  1. +14
    -11
      Makefile

+ 14
- 11
Makefile View File

@@ -781,14 +781,17 @@ ifeq ($(HAVE_ALSA),true)
else else
@echo "ALSA: $(ANS_NO) $(mS)Missing ALSA$(mE)" @echo "ALSA: $(ANS_NO) $(mS)Missing ALSA$(mE)"
endif endif
else
@echo "ALSA: $(ANS_NO) $(mZ)Linux only$(mE)"
endif
ifneq ($(MACOS_OR_WIN32),true)
ifeq ($(HAVE_PULSEAUDIO),true) ifeq ($(HAVE_PULSEAUDIO),true)
@echo "PulseAudio: $(ANS_YES)" @echo "PulseAudio: $(ANS_YES)"
else else
@echo "PulseAudio: $(ANS_NO) $(mS)Missing PulseAudio$(mE)" @echo "PulseAudio: $(ANS_NO) $(mS)Missing PulseAudio$(mE)"
endif endif
else else
@echo "ALSA: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "PulseAudio: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "PulseAudio: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
endif endif
ifeq ($(MACOS),true) ifeq ($(MACOS),true)
@echo "CoreAudio: $(ANS_YES)" @echo "CoreAudio: $(ANS_YES)"
@@ -812,21 +815,21 @@ endif
ifeq ($(MACOS_OR_WIN32),true) ifeq ($(MACOS_OR_WIN32),true)
@echo "VST: $(ANS_YES)(with UI)" @echo "VST: $(ANS_YES)(with UI)"
else else
ifeq ($(LINUX),true)
ifeq ($(HAIKU),true)
@echo "VST: $(ANS_YES)(without UI)"
else
ifeq ($(HAVE_X11),true) ifeq ($(HAVE_X11),true)
@echo "VST: $(ANS_YES)(with UI)" @echo "VST: $(ANS_YES)(with UI)"
else else
@echo "VST: $(ANS_YES)(without UI) $(mS)Missing X11$(mE)" @echo "VST: $(ANS_YES)(without UI) $(mS)Missing X11$(mE)"
endif endif
else # LINUX
@echo "VST: $(ANS_YES)(without UI) $(mZ)Linux, Mac and Windows only$(mE)"
endif endif
endif endif
@echo "" @echo ""


@echo "$(tS)---> LV2 UI toolkit support: $(tE)" @echo "$(tS)---> LV2 UI toolkit support: $(tE)"
@echo "External:$(ANS_YES)(direct)" @echo "External:$(ANS_YES)(direct)"
ifeq ($(LINUX),true)
ifneq ($(MACOS_OR_WIN32),true)
ifeq ($(HAVE_GTK2),true) ifeq ($(HAVE_GTK2),true)
@echo "Gtk2: $(ANS_YES)(bridge)" @echo "Gtk2: $(ANS_YES)(bridge)"
else else
@@ -853,11 +856,11 @@ else
@echo "X11: $(ANS_NO) $(mS)X11 missing$(mE)" @echo "X11: $(ANS_NO) $(mS)X11 missing$(mE)"
endif endif
else # LINUX else # LINUX
@echo "Gtk2: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "Gtk3: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "Qt4: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "Qt5: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "X11: $(ANS_NO) $(mZ)Linux only$(mE)"
@echo "Gtk2: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
@echo "Gtk3: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
@echo "Qt4: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
@echo "Qt5: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
@echo "X11: $(ANS_NO) $(mZ)Not available for Windows or MacOS$(mE)"
endif # LINUX endif # LINUX
ifeq ($(MACOS),true) ifeq ($(MACOS),true)
@echo "Cocoa: $(ANS_YES)(direct+bridge)" @echo "Cocoa: $(ANS_YES)(direct+bridge)"


Loading…
Cancel
Save