mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +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
47 lines
1.6 KiB
Makefile
47 lines
1.6 KiB
Makefile
if USE_GCONF
|
|
GCONF_PC=gstreamer-gconf-@GST_MAJORMINOR@.pc
|
|
GCONF_PC_UNINSTALLED=gstreamer-gconf-@GST_MAJORMINOR@-uninstalled.pc
|
|
else
|
|
GCONF_PC=
|
|
GCONF_PC_UNINSTALLED=
|
|
endif
|
|
|
|
### all of the standard pc files we need to generate
|
|
pcverfiles = \
|
|
$(GCONF_PC) \
|
|
gstreamer-interfaces-@GST_MAJORMINOR@.pc \
|
|
gstreamer-libs-@GST_MAJORMINOR@.pc \
|
|
gstreamer-media-info-@GST_MAJORMINOR@.pc \
|
|
gstreamer-play-@GST_MAJORMINOR@.pc \
|
|
gstreamer-plugins-@GST_MAJORMINOR@.pc
|
|
pcverfiles_uninstalled = \
|
|
$(GCONF_PC_UNINSTALLED) \
|
|
gstreamer-interfaces-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-libs-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-media-info-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-play-@GST_MAJORMINOR@-uninstalled.pc \
|
|
gstreamer-plugins-@GST_MAJORMINOR@-uninstalled.pc
|
|
|
|
pcverfiles_gconf = $(GCONF_PC) $(GCONF_PC_UNINSTALLED)
|
|
all-local: $(pcverfiles) $(pcverfiles_uninstalled)
|
|
|
|
### how to generate versioned .pc files from .pc files in this dir
|
|
%-@GST_MAJORMINOR@.pc: %.pc
|
|
cp $< $@
|
|
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
|
cp $< $@
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = $(pcverfiles)
|
|
|
|
CLEANFILES = $(pcverfiles) $(pcverfiles_uninstalled)
|
|
pcinfiles = \
|
|
gstreamer-gconf.pc.in gstreamer-gconf-uninstalled.pc.in \
|
|
gstreamer-interfaces.pc.in gstreamer-interfaces-uninstalled.pc.in \
|
|
gstreamer-libs.pc.in gstreamer-libs-uninstalled.pc.in \
|
|
gstreamer-media-info.pc.in gstreamer-media-info-uninstalled.pc.in \
|
|
gstreamer-play.pc.in gstreamer-play-uninstalled.pc.in \
|
|
gstreamer-plugins.pc.in gstreamer-plugins-uninstalled.pc.in
|
|
|
|
DISTCLEANFILES = $(pcinfiles:.in=)
|
|
EXTRA_DIST = $(pcinfiles)
|