diff options
author | David Schleef <ds@schleef.org> | 2004-04-20 22:22:01 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-04-20 22:22:01 +0000 |
commit | 828252e0f24d00d4e4a7352fca3e2e32ebe98c94 (patch) | |
tree | 693fd05e9b989e9a71ac69f0219c1b68759e62ba /plugins/indexers | |
parent | 5453269a0e2407ce2044effe86d944659f146979 (diff) |
common/as-libtool.mak: Fine-tune DLL building.
Original commit message from CVS:
* common/as-libtool.mak: Fine-tune DLL building.
* configure.ac: Link plugins against libgstreamer. Define plugindir
(like gst-plugins)
* examples/plugins/Makefile.am: remove plugindir
* gst/autoplug/Makefile.am: DLL building fixes
* gst/elements/Makefile.am: DLL building fixes. Disable pipefilter on
Windows.
* gst/elements/gstelements.c: Conditionally disable pipefilter.
* gst/indexers/Makefile.am: DLL building fixes
* gst/schedulers/Makefile.am: DLL building fixes.
* libs/gst/bytestream/Makefile.am: DLL building fixes.
* libs/gst/control/Makefile.am: same
* libs/gst/getbits/Makefile.am: same
* testsuite/Makefile.am: New dlopen directory
* testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works
when dlopened.
* testsuite/dlopen/dlopen_gst.c: (main): same
* testsuite/dlopen/loadgst.c: (do_test): same
Diffstat (limited to 'plugins/indexers')
-rw-r--r-- | plugins/indexers/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/indexers/Makefile.am b/plugins/indexers/Makefile.am index 5aa9e69b6..deadb8261 100644 --- a/plugins/indexers/Makefile.am +++ b/plugins/indexers/Makefile.am @@ -1,6 +1,9 @@ -plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@ plugin_LTLIBRARIES = libgstindexers.la +AS_LIBTOOL_LIB = libgstindexers + +EXTRA_DIST = $(as_libtool_EXTRA_DIST) +noinst_DATA = $(as_libtool_noinst_DATA_files) # file index uses xml if GST_DISABLE_LOADSAVE @@ -13,3 +16,10 @@ libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC) libgstindexers_la_CFLAGS = $(GST_CFLAGS) libgstindexers_la_LIBADD = libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +install-data-local: as-libtool-install-data-local + +uninstall-local: as-libtool-uninstall-local + +include $(top_srcdir)/common/as-libtool.mak + |