diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-01-23 16:01:13 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-01-23 16:01:13 +0000 |
commit | 77a9a988292b448b0202b781426604067f8294bd (patch) | |
tree | a310b83d6614a24f744183593140435824af277f /gst-plugin | |
parent | e939dfe8d8f20c89b0c1d2832d09c54d00e1d7a8 (diff) |
src/Makefile.am: Make clearer which Makefile variables need renaming if the plugin name is changes (#399746) (pretty ...
Original commit message from CVS:
* src/Makefile.am:
Make clearer which Makefile variables need renaming if the plugin
name is changes (#399746) (pretty it is not, but it's the content
that counts, right?)
Diffstat (limited to 'gst-plugin')
-rw-r--r-- | gst-plugin/ChangeLog | 7 | ||||
-rw-r--r-- | gst-plugin/src/Makefile.am | 12 |
2 files changed, 17 insertions, 2 deletions
diff --git a/gst-plugin/ChangeLog b/gst-plugin/ChangeLog index 08209ec..c85a2a5 100644 --- a/gst-plugin/ChangeLog +++ b/gst-plugin/ChangeLog @@ -1,3 +1,10 @@ +2007-01-23 Tim-Philipp Müller <tim at centricular dot net> + + * src/Makefile.am: + Make clearer which Makefile variables need renaming if the plugin + name is changes (#399746) (pretty it is not, but it's the content + that counts, right?) + 2007-01-22 Tim-Philipp Müller <tim at centricular dot net> Patch by: Philip Jägenstedt <philipj at opera com> diff --git a/gst-plugin/src/Makefile.am b/gst-plugin/src/Makefile.am index eebc08b..ddf3180 100644 --- a/gst-plugin/src/Makefile.am +++ b/gst-plugin/src/Makefile.am @@ -1,9 +1,17 @@ # plugindir is set in configure -# change libgstplugin.la to something more suitable +############################################################################## +# change libgstplugin.la to something more suitable, e.g. libmysomething.la # +############################################################################## plugin_LTLIBRARIES = libgstplugin.la -# for the next set of variables, rename the prefix if you renamed the .la +############################################################################## +# for the next set of variables, rename the prefix if you renamed the .la, # +# e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES # +# libgstplugin_la_CFLAGS => libmysomething_la_CFLAGS # +# libgstplugin_la_LIBADD => libmysomething_la_LIBADD # +# libgstplugin_la_LDFLAGS => libmysomething_la_LDFLAGS # +############################################################################## # sources used to compile this plug-in libgstplugin_la_SOURCES = gstplugin.c |