From 6ae5f15064e40806301c5c8d16efa3be507be5a3 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Mar 2002 01:39:45 +0000 Subject: [PATCH] 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 --- gst/elements/Makefile.am | 2 +- libs/gst/bytestream/Makefile.am | 2 +- libs/gst/control/Makefile.am | 2 +- libs/gst/getbits/Makefile.am | 2 +- libs/gst/putbits/Makefile.am | 2 +- plugins/elements/Makefile.am | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gst/elements/Makefile.am b/gst/elements/Makefile.am index 440c655a2a..8518d82ebb 100644 --- a/gst/elements/Makefile.am +++ b/gst/elements/Makefile.am @@ -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 \ diff --git a/libs/gst/bytestream/Makefile.am b/libs/gst/bytestream/Makefile.am index a514755815..5f70e7d58f 100644 --- a/libs/gst/bytestream/Makefile.am +++ b/libs/gst/bytestream/Makefile.am @@ -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) diff --git a/libs/gst/control/Makefile.am b/libs/gst/control/Makefile.am index cd0f88ef2d..7d03e2c449 100644 --- a/libs/gst/control/Makefile.am +++ b/libs/gst/control/Makefile.am @@ -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) diff --git a/libs/gst/getbits/Makefile.am b/libs/gst/getbits/Makefile.am index 222e679854..38a66ff19c 100644 --- a/libs/gst/getbits/Makefile.am +++ b/libs/gst/getbits/Makefile.am @@ -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 diff --git a/libs/gst/putbits/Makefile.am b/libs/gst/putbits/Makefile.am index 16254de8db..31e2d8085f 100644 --- a/libs/gst/putbits/Makefile.am +++ b/libs/gst/putbits/Makefile.am @@ -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 diff --git a/plugins/elements/Makefile.am b/plugins/elements/Makefile.am index 440c655a2a..8518d82ebb 100644 --- a/plugins/elements/Makefile.am +++ b/plugins/elements/Makefile.am @@ -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 \