mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
configure.ac: Applied patch from bug #143659, making default and added code for OS/X.
Original commit message from CVS: * configure.ac: Applied patch from bug #143659, making default sources and sinks OS-dependent (for Solaris), and added code for OS/X. * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
This commit is contained in:
parent
49f6c1b9d8
commit
43a32201c3
2 changed files with 31 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-12-13 David Schleef <ds@schleef.org>
|
||||
|
||||
* configure.ac: Applied patch from bug #143659, making default
|
||||
sources and sinks OS-dependent (for Solaris), and added code
|
||||
for OS/X.
|
||||
* gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
|
||||
|
||||
2004-12-13 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
|
|
24
configure.ac
24
configure.ac
|
@ -100,6 +100,30 @@ fi
|
|||
dnl Check for FIONREAD ioctl declaration :
|
||||
GST_CHECK_FIONREAD()
|
||||
|
||||
DEFAULT_AUDIOSINK="osssink"
|
||||
DEFAULT_VIDEOSINK="xvimagesink"
|
||||
DEFAULT_AUDIOSRC="osssrc"
|
||||
DEFAULT_VIDEOSRC="v4lsrc"
|
||||
DEFAULT_VISUALIZER="goom"
|
||||
case "$host" in
|
||||
*-sun-* | *pc-solaris* )
|
||||
DEFAULT_AUDIOSINK="sunaudiosink"
|
||||
DEFAULT_VIDEOSINK="ximagesink"
|
||||
DEFAULT_AUDIOSRC="sunaudiosrc"
|
||||
;;
|
||||
*-darwin* )
|
||||
DEFAULT_AUDIOSINK="osxaudiosink"
|
||||
DEFAULT_AUDIOSRC="osxaudiosrc"
|
||||
DEFAULT_VIDEOSINK="osxvideosink"
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_SUBST(DEFAULT_AUDIOSINK)
|
||||
AC_SUBST(DEFAULT_AUDIOSRC)
|
||||
AC_SUBST(DEFAULT_VIDEOSINK)
|
||||
AC_SUBST(DEFAULT_VIDEOSRC)
|
||||
AC_SUBST(DEFAULT_VISUALIZER)
|
||||
|
||||
dnl ############################################
|
||||
dnl # Super Duper options for plug-in building #
|
||||
dnl ############################################
|
||||
|
|
Loading…
Reference in a new issue