mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
7305565829
Original commit message from CVS: fix funny build issue by not linking plugin libraries to gstreamer core. this is because they are plugins, not shared libraries per se, and will only be loaded by the core itself. this change allows the core elements (schedulers, autopluggers, etc) to use the core loadable libraries (bytestream, getbits, etc) as well as "ext" libs like the new cothreads package.
12 lines
367 B
Makefile
12 lines
367 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstputbits.la
|
|
|
|
libgstputbitsincludedir = $(includedir)/gst/putbits
|
|
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@
|
|
|
|
noinst_HEADERS = putbits.h
|