mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
6ddd15c744
Original commit message from CVS: * gconf/Makefile.am: Fix for non-GNU make * gst-libs/gst/Makefile.am: Change directory order to handle GstPlay linking with gstinterfaces * gst-libs/gst/audio/make_filter: make use of tr portable * gst-libs/gst/play/Makefile.am: Add intended \ * gst-libs/gst/xwindowlistener/xwindowlistener.c: (gst_xwin_set_clips): Switch to ISO variadic macro. Use a function prototype instead of void *. * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic macro. * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call * gst/videofilter/make_filter: make use of tr portable * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
68 lines
1 KiB
Makefile
68 lines
1 KiB
Makefile
if USE_GCONF
|
|
GCONF_DIR = gconf
|
|
else
|
|
GCONF_DIR =
|
|
endif
|
|
|
|
if USE_X
|
|
X_DIR = xwindowlistener
|
|
else
|
|
X_DIR =
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
audio \
|
|
colorbalance \
|
|
floatcast \
|
|
$(GCONF_DIR) \
|
|
idct \
|
|
media-info \
|
|
mixer \
|
|
navigation \
|
|
propertyprobe \
|
|
resample \
|
|
riff \
|
|
tag \
|
|
tuner \
|
|
video \
|
|
xoverlay \
|
|
$(X_DIR) \
|
|
. \
|
|
play
|
|
|
|
DIST_SUBDIRS = \
|
|
audio \
|
|
colorbalance \
|
|
floatcast \
|
|
gconf \
|
|
idct \
|
|
media-info \
|
|
mixer \
|
|
navigation \
|
|
play \
|
|
propertyprobe \
|
|
resample \
|
|
riff \
|
|
tag \
|
|
tuner \
|
|
video \
|
|
xoverlay \
|
|
xwindowlistener
|
|
|
|
|
|
lib_LTLIBRARIES = libgstinterfaces-@GST_MAJORMINOR@.la
|
|
|
|
libgstinterfaces_@GST_MAJORMINOR@_la_SOURCES =
|
|
|
|
libgstinterfaces_@GST_MAJORMINOR@_la_LIBADD = \
|
|
colorbalance/libgstcolorbalance.la \
|
|
mixer/libgstmixer.la \
|
|
navigation/libgstnavigation.la \
|
|
propertyprobe/libgstpropertyprobe.la \
|
|
tuner/libgsttuner.la \
|
|
xoverlay/libgstxoverlay.la \
|
|
$(GST_LIBS)
|
|
|
|
libgstinterfaces_@GST_MAJORMINOR@_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@
|
|
|
|
noinst_HEADERS = gettext.h gst-i18n-plugin.h
|