mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
sys/osxaudio/Makefile.am: osxaudio plugin now requires AudioUnit framework, so link against that.
Original commit message from CVS: * sys/osxaudio/Makefile.am: osxaudio plugin now requires AudioUnit framework, so link against that. Clean up tabs v spaces while I'm there.
This commit is contained in:
parent
89060e8696
commit
b7d55c18de
2 changed files with 22 additions and 16 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-01-13 Michael Smith <msmith@songbirdnest.com>
|
||||||
|
|
||||||
|
* sys/osxaudio/Makefile.am:
|
||||||
|
osxaudio plugin now requires AudioUnit framework, so link against that.
|
||||||
|
Clean up tabs v spaces while I'm there.
|
||||||
|
|
||||||
2009-01-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
2009-01-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
* tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
|
* tests/examples/rtp/server-alsasrc-PCMA.c: (print_source_stats),
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
plugin_LTLIBRARIES = libgstosxaudio.la
|
plugin_LTLIBRARIES = libgstosxaudio.la
|
||||||
|
|
||||||
libgstosxaudio_la_SOURCES = gstosxringbuffer.c \
|
libgstosxaudio_la_SOURCES = gstosxringbuffer.c \
|
||||||
gstosxaudioelement.c \
|
gstosxaudioelement.c \
|
||||||
gstosxaudiosink.c \
|
gstosxaudiosink.c \
|
||||||
gstosxaudiosrc.c \
|
gstosxaudiosrc.c \
|
||||||
gstosxaudio.c
|
gstosxaudio.c
|
||||||
|
|
||||||
libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||||
-Wno-deprecated-declarations
|
-Wno-deprecated-declarations
|
||||||
libgstosxaudio_la_LIBADD = \
|
libgstosxaudio_la_LIBADD = \
|
||||||
-lgstinterfaces-@GST_MAJORMINOR@ \
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
||||||
-lgstaudio-@GST_MAJORMINOR@ \
|
-lgstaudio-@GST_MAJORMINOR@ \
|
||||||
$(GST_PLUGINS_BASE_LIBS) \
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_LIBS)
|
$(GST_LIBS)
|
||||||
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,CoreAudio
|
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,CoreAudio,-framework -Wl,AudioUnit
|
||||||
libgstosxaudio_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstosxaudio_la_LIBTOOLFLAGS = --tag=disable-static
|
||||||
|
|
||||||
noinst_HEADERS = gstosxaudiosink.h \
|
noinst_HEADERS = gstosxaudiosink.h \
|
||||||
gstosxaudioelement.h \
|
gstosxaudioelement.h \
|
||||||
gstosxringbuffer.h \
|
gstosxringbuffer.h \
|
||||||
gstosxaudiosrc.h
|
gstosxaudiosrc.h
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue