mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/volume/Makefile.am: Seriously, it's not *that* hard to get compilation right. Even a drunk can do it ! Add LIBOI...
Original commit message from CVS: * gst/volume/Makefile.am: Seriously, it's not *that* hard to get compilation right. Even a drunk can do it ! Add LIBOIL CFLAGS and LIBS
This commit is contained in:
parent
f15cbf88ca
commit
87e1c8a9a3
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/volume/Makefile.am:
|
||||
Seriously, it's not *that* hard to get compilation right. Even
|
||||
a drunk can do it ! Add LIBOIL CFLAGS and LIBS
|
||||
|
||||
2006-06-01 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/volume/gstvolume.c: (volume_choose_func),
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
plugin_LTLIBRARIES = libgstvolume.la
|
||||
|
||||
libgstvolume_la_SOURCES = gstvolume.c
|
||||
libgstvolume_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS)
|
||||
libgstvolume_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(LIBOIL_CFLAGS)
|
||||
libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstvolume_la_LIBADD = \
|
||||
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
||||
$(GST_BASE_LIBS) \
|
||||
$(GST_LIBS) \
|
||||
$(GST_CONTROLLER_LIBS)
|
||||
$(GST_CONTROLLER_LIBS) \
|
||||
$(LIBOIL_LIBS)
|
||||
|
||||
noinst_HEADERS = gstvolume.h
|
||||
|
||||
|
|
Loading…
Reference in a new issue