diff options
author | David Schleef <ds@schleef.org> | 2004-05-19 06:10:49 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-05-19 06:10:49 +0000 |
commit | 96becbe402e9d23cdbc928889b35e363bbc6f421 (patch) | |
tree | 8f19333d2b4ac1a64204e22d1b72c07fb50ee9eb /examples | |
parent | af279726ee3296addd4ddf29dfb5242b0fabb8f9 (diff) |
configure.ac: Add sunaudio
Original commit message from CVS:
* configure.ac: Add sunaudio
* examples/Makefile.am: make gstplay depend on gconf
* gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
* gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
(convert_table_lookup), (img_convert): remove c99-isms
* gst/ffmpegcolorspace/imgconvert_template.h: make a constant
unsigned, to fix a warning on Solaris
* gst/mpeg1sys/systems.c: bcopy->memcpy
* gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
* sys/Makefile.am: Add sunaudio
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index d2537f292..0c8190c7b 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -10,5 +10,11 @@ else GTK_SUBDIRS= endif -SUBDIRS=$(GTK_SUBDIRS) gstplay switch +if USE_GCONF +GCONF_SUBDIRS=gstplay +else +GCONF_SUBDIRS= +endif + +SUBDIRS=$(GTK_SUBDIRS) $(GCONF_SUBDIRS) switch DIST_SUBDIRS=capsfilter dynparams seeking indexing gstplay switch |