aboutsummaryrefslogtreecommitdiffstats
path: root/bs/deps-audio.mk
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-06-01 22:24:55 +0000
committerEric Wong <normalperson@yhbt.net>2008-06-01 22:24:55 +0000
commit8a4dff14ad7560aae83e9155d0c62ba7f8c101fd (patch)
treef9803ea83fa7cb6020e84b78f3fc45b4086e4a13 /bs/deps-audio.mk
parent97698bd4aaf168620205fea26f089e7b1acc869d (diff)
downloadmpd-8a4dff14ad7560aae83e9155d0c62ba7f8c101fd.tar.gz
mpd-8a4dff14ad7560aae83e9155d0c62ba7f8c101fd.tar.xz
mpd-8a4dff14ad7560aae83e9155d0c62ba7f8c101fd.zip
Add the bs build system from mpd-ke
Dealing with autotools is too painful when having to deal with multiple build environments and configurations. git-svn-id: https://svn.musicpd.org/mpd/trunk@7368 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--bs/deps-audio.mk38
1 files changed, 38 insertions, 0 deletions
diff --git a/bs/deps-audio.mk b/bs/deps-audio.mk
new file mode 100644
index 000000000..6f26c124e
--- /dev/null
+++ b/bs/deps-audio.mk
@@ -0,0 +1,38 @@
+ifeq ($(HAVE_ALSA),1)
+ mpd_CFLAGS += $(ALSA_CFLAGS) -DHAVE_LIBASOUND=1
+ mpd_LDFLAGS += $(ALSA_LDFLAGS) -lasound
+endif
+
+ifeq ($(HAVE_AO),1)
+ # mpd_CFLAGS += -pthread
+ mpd_LDFLAGS += -lao -lpthread
+endif
+
+ifeq ($(HAVE_FIFO),1)
+endif
+
+ifeq ($(HAVE_JACK),1)
+ mpd_LDFLAGS += -ljack
+endif
+
+ifeq ($(HAVE_MVP),1)
+endif
+
+ifeq ($(HAVE_OSX),1)
+ mpd_LDFLAGS += -framework AudioUnit -framework CoreServices
+endif
+ifeq ($(HAVE_OSS),1)
+ # check some BSDs (-lossaudio?)
+endif
+ifeq ($(HAVE_PULSE),1)
+ mpd_LDFLAGS += -lpulse -lpulse-simple
+endif
+ifeq ($(HAVE_SHOUT),1)
+ mpd_CFLAGS += -DHAVE_SHOUT_SHOUT_H=1
+ # XXX -ltheora, -lspeex
+ mpd_LDFLAGS += -lshout -logg -lvorbis -lvorbisenc -ltheora -lspeex -lpthread
+endif
+ifeq ($(HAVE_SUN),1)
+ mpd_CFLAGS += $(SUN_CFLAGS)
+ mpd_LDFLAGS += $(SUN_LDFLAGS)
+endif