diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-07 15:33:30 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-07 15:35:06 -0400 |
commit | 8cec9441497327c0cbb9f4c6c41f5fd9314208c9 (patch) | |
tree | 216f47c61981be0c0c355e754a5e1a9a07761e72 /sys | |
parent | 92075e0256584b3ce22ff00d4c7a835ab296ddb0 (diff) |
osxaudio: Distribute device provider files
Those where missing the the dev release tarballs for 1.9.2 which
prevented building from tarball on OSX platform
Diffstat (limited to 'sys')
-rw-r--r-- | sys/osxaudio/Makefile.am | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/osxaudio/Makefile.am b/sys/osxaudio/Makefile.am index 45c720088..f5f1d9c8e 100644 --- a/sys/osxaudio/Makefile.am +++ b/sys/osxaudio/Makefile.am @@ -17,22 +17,22 @@ libgstosxaudio_la_LIBADD = \ $(GST_LIBS) libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox - -if !HAVE_IOS -libgstosxaudio_la_SOURCES += gstosxaudiodeviceprovider.c -libgstosxaudio_la_LDFLAGS += -Wl,-framework,AudioUnit -Wl,-framework,CoreServices -endif - libgstosxaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC noinst_HEADERS = gstosxaudiosink.h \ + gstosxaudiodeviceprovider.h \ gstosxaudioelement.h \ gstosxaudioringbuffer.h \ gstosxaudiosrc.h \ gstosxcoreaudiocommon.h \ - gstosxcoreaudio.h \ - gstosxcoreaudiohal.c \ - gstosxcoreaudioremoteio.c - + gstosxcoreaudio.h +EXTRA_DIST = gstosxcoreaudiohal.c \ + gstosxcoreaudioremoteio.c +if !HAVE_IOS +libgstosxaudio_la_SOURCES += gstosxaudiodeviceprovider.c +libgstosxaudio_la_LDFLAGS += -Wl,-framework,AudioUnit -Wl,-framework,CoreServices +else +EXTRA_DIST += gstosxaudiodeviceprovider.c +endif |