mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fixes bug 83427
Original commit message from CVS: fixes bug 83427
This commit is contained in:
parent
5e58b4bdaa
commit
76c3b66b08
2 changed files with 20 additions and 10 deletions
|
@ -1,9 +1,14 @@
|
|||
plugindir=/dev/null
|
||||
## we need to specify the plugindir if we want libtool to build .so files ...
|
||||
plugindir=$(libdir)/gst
|
||||
|
||||
plugin_LTLIBRARIES = libexample.la
|
||||
plugin_LTLIBRARIES = libgstexample.la
|
||||
|
||||
libexample_la_SOURCES = example.c
|
||||
libexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstexample_la_SOURCES = example.c
|
||||
libgstexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = example.h
|
||||
|
||||
## ... but we don't want them installed so we override the install target
|
||||
install:
|
||||
@true
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
plugindir=/dev/null
|
||||
## we need to specify the plugindir if we want libtool to build .so files ...
|
||||
plugindir=$(libdir)/gst
|
||||
|
||||
plugin_LTLIBRARIES = libexample.la
|
||||
plugin_LTLIBRARIES = libgstexample.la
|
||||
|
||||
libexample_la_SOURCES = example.c
|
||||
libexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstexample_la_SOURCES = example.c
|
||||
libgstexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = example.h
|
||||
|
||||
## ... but we don't want them installed so we override the install target
|
||||
install:
|
||||
@true
|
||||
|
|
Loading…
Reference in a new issue