mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
d04099240b
Original commit message from CVS: 2001-12-14 Michael Meeks <michael@ximian.com> * gst/gst.c (gst_main, gst_main_quit): upd. * gst/gstutils.c (gst_util_has_arg): impl. (gst_util_get_int64_arg): impl. * plugins/mpeg2/video/gstmpeg2play.c (gst_mpeg2play_class_init): min frames per sec = 0. * plugins/mikmod/gstmikmod.c (gst_mikmod_class_init): s/16bit/use16bit/ properties can't begin with a non alpha. * tools/gstreamer-guilaunch.c: fresh from the ministy of nasty hacks. * tools/Makefile.am: enable gstreamer-guilaunch for Gnome 2.0 * tools/gstreamer-launch.c (main): upd. (idle_func): quit the mainloop.
41 lines
899 B
Makefile
41 lines
899 B
Makefile
|
|
if GST_DISABLE_REGISTRY
|
|
GST_REGISTRY_SRC =
|
|
else
|
|
GST_REGISTRY_SRC = gstreamer-register
|
|
endif
|
|
|
|
if GST_DISABLE_LOADSAVE
|
|
GST_LOADSAVE_SRC =
|
|
else
|
|
GST_LOADSAVE_SRC = gstreamer-compprep
|
|
endif
|
|
|
|
if USE_GLIB2
|
|
if HAVE_LIBGLADE_GNOME
|
|
GST_GUI_LAUNCH = gstreamer-guilaunch
|
|
gstreamer_guilaunch_CFLAGS = \
|
|
$(LIBGLADE_GNOME_CFLAGS) $(CFLAGS)
|
|
gstreamer_guilaunch_LDADD = \
|
|
$(LIBGLADE_GNOME_LIBS) $(LDADD)
|
|
else
|
|
GST_GUI_LAUNCH =
|
|
endif
|
|
else
|
|
GST_GUI_LAUNCH = gstreamer-guilaunch
|
|
endif
|
|
|
|
bin_PROGRAMS = gstreamer-launch \
|
|
$(GST_GUI_LAUNCH) \
|
|
$(GST_REGISTRY_SRC) \
|
|
gstreamer-inspect \
|
|
$(GST_LOADSAVE_SRC) \
|
|
gstreamer-complete
|
|
|
|
man_MANS = gstreamer-launch.1 gstreamer-register.1 gstreamer-inspect.1 \
|
|
gstreamer-complete.1 gstreamer-compprep.1 gstreamer-guilaunch.1
|
|
|
|
LDADD = $(GST_LIBS)
|
|
CFLAGS = $(GST_CFLAGS) -DGST_CONFIG_DIR=\"$(GST_CONFIG_DIR)\" $(GLIB_CFLAGS) $(XML_CFLAGS)
|
|
|
|
EXTRA_DIST = $(man_MANS)
|