mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagi...
Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag
This commit is contained in:
parent
a43fadec2e
commit
6ae5f15064
6 changed files with 6 additions and 6 deletions
|
@ -20,7 +20,7 @@ libgstelements_la_SOURCES = \
|
|||
gstmd5sink.c
|
||||
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstelements_la_LIBADD = $(GST_LIBS)
|
||||
libgstelements_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ @GST_LT_LDFLAGS@
|
||||
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) @GST_LT_LDFLAGS@
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstfakesrc.h \
|
||||
|
|
|
@ -8,7 +8,7 @@ libgstbytestreaminclude_HEADERS = bytestream.h
|
|||
|
||||
libgstbytestream_la_SOURCES = bytestream.c
|
||||
libgstbytestream_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstbytestream_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
||||
libgstbytestream_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
libgstbstest_la_SOURCES = bstest.c
|
||||
libgstbstest_la_CFLAGS = $(GST_CFLAGS)
|
||||
|
|
|
@ -19,4 +19,4 @@ libgstcontrol_la_SOURCES = \
|
|||
dplinearinterp.c
|
||||
|
||||
libgstcontrol_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
||||
libgstcontrol_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
||||
libgstcontrol_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
|
|
@ -15,7 +15,7 @@ libgstgetbits_la_SOURCES = getbits.c gstgetbits_inl.h gstgetbits_generic.c $(GST
|
|||
EXTRA_libgstgetbits_la_SOURCES = gstgetbits_i386.s
|
||||
|
||||
libgstgetbits_la_CFLAGS = $(GST_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
||||
libgstgetbits_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
||||
libgstgetbits_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = getbits.h gstgetbits_inl.h
|
||||
|
||||
|
|
|
@ -7,6 +7,6 @@ libgstputbitsinclude_HEADERS = putbits.h
|
|||
|
||||
libgstputbits_la_SOURCES = putbits.c
|
||||
libgstputbits_la_CFLAGS = $(GST_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
||||
libgstputbits_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
||||
libgstputbits_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = putbits.h
|
||||
|
|
|
@ -20,7 +20,7 @@ libgstelements_la_SOURCES = \
|
|||
gstmd5sink.c
|
||||
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstelements_la_LIBADD = $(GST_LIBS)
|
||||
libgstelements_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@ @GST_LT_LDFLAGS@
|
||||
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) @GST_LT_LDFLAGS@
|
||||
|
||||
noinst_HEADERS = \
|
||||
gstfakesrc.h \
|
||||
|
|
Loading…
Reference in a new issue