mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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
This commit is contained in:
parent
cd1cd539d3
commit
9164fa06ee
3 changed files with 27 additions and 1 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2004-05-18 David Schleef <ds@schleef.org>
|
||||
|
||||
* 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
|
||||
|
||||
2004-05-18 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
|
||||
|
|
|
@ -461,6 +461,12 @@ GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
|
|||
fi
|
||||
])
|
||||
|
||||
dnl *** Sun Audio ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_SUNAUDIO, true)
|
||||
GST_CHECK_FEATURE(SUNAUDIO, [Sun Audio], sunaudiosrc, [
|
||||
AC_CHECK_HEADER(sys/audioio.h, HAVE_SUNAUDIO="yes", HAVE_SUNAUDIO="no")
|
||||
])
|
||||
|
||||
dnl *** Video CD ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_VCD, true)
|
||||
GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
|
||||
|
@ -1786,6 +1792,7 @@ sys/dxr3/Makefile
|
|||
sys/glsink/Makefile
|
||||
sys/oss/Makefile
|
||||
sys/qcam/Makefile
|
||||
sys/sunaudio/Makefile
|
||||
sys/v4l/Makefile
|
||||
sys/v4l2/Makefile
|
||||
sys/vcd/Makefile
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue