mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-19 20:46:22 +00:00
Remove #include <gnome.h> from some tests which don't actually need it, and make the other tests and the autoplug exa...
Original commit message from CVS: Remove #include <gnome.h> from some tests which don't actually need it, and make the other tests and the autoplug example only compile if gnome headers are present.
This commit is contained in:
parent
6ac86486a8
commit
0bf1a380cc
5 changed files with 28 additions and 9 deletions
|
@ -1,4 +1,11 @@
|
||||||
SUBDIRS = autoplug \
|
|
||||||
|
if HAVE_GNOME
|
||||||
|
GNOME_SUBDS = autoplug
|
||||||
|
else
|
||||||
|
GNOME_SUBDS =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(GNOME_SUBDS) \
|
||||||
helloworld helloworld2 \
|
helloworld helloworld2 \
|
||||||
queue queue2 queue3 queue4 \
|
queue queue2 queue3 queue4 \
|
||||||
launch thread xml plugins typefind
|
launch thread xml plugins typefind
|
||||||
|
|
|
@ -1,10 +1,17 @@
|
||||||
# FIXME FIXME
|
# FIXME FIXME
|
||||||
|
|
||||||
noinst_PROGRAMS = qtest spectrum record wave mp3 teardown buffer mp3parse \
|
if HAVE_GNOME
|
||||||
mpeg2parse mp1parse mp3play ac3parse ac3play dvdcat fake cobin videotest \
|
GNOME_PROGS = spectrum wave mpeg2parse mp1parse videotest aviparse \
|
||||||
aviparse vidcapture avi2mpg mp2tomp1 mp1tomp1 pipetest \
|
mpeg2parse2 videotest2 video2mp1 dvshow dv2mp1
|
||||||
vidcapture2 mp2toavi mp3tovorbis mpeg2parse2 xmmstest videotest2 \
|
else
|
||||||
mp3mad video2mp1 dvshow dv2mp1
|
GNOME_PROGS =
|
||||||
|
endif
|
||||||
|
|
||||||
|
noinst_PROGRAMS = qtest $(GNOME_PROGS) record mp3 teardown buffer mp3parse \
|
||||||
|
mp3play ac3parse ac3play dvdcat fake cobin \
|
||||||
|
vidcapture avi2mpg mp2tomp1 mp1tomp1 pipetest \
|
||||||
|
vidcapture2 mp2toavi mp3tovorbis xmmstest \
|
||||||
|
mp3mad
|
||||||
|
|
||||||
SUBDIRS = xml bindings
|
SUBDIRS = xml bindings
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#include <gnome.h>
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
extern gboolean _gst_plugin_spew;
|
extern gboolean _gst_plugin_spew;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#include <gnome.h>
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
extern gboolean _gst_plugin_spew;
|
extern gboolean _gst_plugin_spew;
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
SUBDIRS = autoplug \
|
|
||||||
|
if HAVE_GNOME
|
||||||
|
GNOME_SUBDS = autoplug
|
||||||
|
else
|
||||||
|
GNOME_SUBDS =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(GNOME_SUBDS) \
|
||||||
helloworld helloworld2 \
|
helloworld helloworld2 \
|
||||||
queue queue2 queue3 queue4 \
|
queue queue2 queue3 queue4 \
|
||||||
launch thread xml plugins typefind
|
launch thread xml plugins typefind
|
||||||
|
|
Loading…
Reference in a new issue