mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
b030b5cef2
Original commit message from CVS: - Add more --disable options - fix makefiles to only compile non-disabled features - some compile fixes. - removed extratypes, added gsturitype - make get/set clock on a bin overridable - some portability fixes for GUINT64 - separate pools from gstregistry.[ch] into gstregistrypool.[ch] - make gstobject size fixed, even if we disabled load/save - don't use 'new' as a variable as it is not a valib C++ variable
22 lines
541 B
Makefile
22 lines
541 B
Makefile
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_DIRS =
|
|
else
|
|
GST_LOADSAVE_DIRS = xml typefind
|
|
endif
|
|
|
|
if GST_DISABLE_AUTOPLUG
|
|
GST_AUTOPLUG_DIRS =
|
|
else
|
|
GST_AUTOPLUG_DIRS = autoplug helloworld2
|
|
endif
|
|
|
|
SUBDIRS = $(GST_AUTOPLUG_DIRS) $(GST_LOADSAVE_DIRS) \
|
|
helloworld \
|
|
queue queue2 queue3 queue4 \
|
|
launch thread plugins mixer cutter pingpong manual
|
|
|
|
DIST_SUBDIRS = autoplug \
|
|
helloworld helloworld2 \
|
|
queue queue2 queue3 queue4 \
|
|
launch thread xml plugins typefind mixer cutter pingpong manual
|
|
|