mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
configure.ac: Add objective-c support if running in Darwin/Mac OS X
Original commit message from CVS: 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org> * configure.ac: Add objective-c support if running in Darwin/Mac OS X * sys/Makefile.am: * sys/osxvideo: * sys/osxvideo/Makefile.am: * sys/osxvideo/osxvideosink.h: * sys/osxvideo/osxvideosink.m: * sys/osxvideo/cocoawindow.h: * sys/osxvideo/cocoawindow.m: Add osxvideosink, a cocoa-based osx video sink
This commit is contained in:
parent
0b94bacbe9
commit
ea9492fdf3
2 changed files with 37 additions and 1 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,17 @@
|
|||
2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org>
|
||||
|
||||
* configure.ac:
|
||||
Add objective-c support if running in Darwin/Mac OS X
|
||||
* sys/Makefile.am:
|
||||
* sys/osxvideo:
|
||||
* sys/osxvideo/Makefile.am:
|
||||
* sys/osxvideo/osxvideosink.h:
|
||||
* sys/osxvideo/osxvideosink.m:
|
||||
* sys/osxvideo/cocoawindow.h:
|
||||
* sys/osxvideo/cocoawindow.m:
|
||||
Add osxvideosink, a cocoa-based osx video sink
|
||||
|
||||
|
||||
2004-06-19 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
* ext/dvdnav/gst-dvd:
|
||||
Grab the gconf key from the right spot
|
||||
|
|
24
configure.ac
24
configure.ac
|
@ -43,7 +43,17 @@ AC_PROG_CC
|
|||
AM_PROG_CC_STDC
|
||||
AM_PROG_AS
|
||||
AS="${CC}"
|
||||
|
||||
dnl objective-c for OSX (should check if os is darwin)
|
||||
case "$host" in
|
||||
*-*darwin*)
|
||||
AM_CONDITIONAL([am__fastdepOBJC], false)
|
||||
OBJC="${CC}"
|
||||
AC_SUBST(OBJC)
|
||||
OBJCFLAGS="${CFLAGS}"
|
||||
AC_SUBST(OBJCFLAGS)
|
||||
_AM_DEPENDENCIES(OBJC)
|
||||
;;
|
||||
esac
|
||||
dnl the gettext stuff needed
|
||||
AM_GNU_GETTEXT_VERSION(0.11.5)
|
||||
AM_GNU_GETTEXT([external])
|
||||
|
@ -476,6 +486,17 @@ GST_CHECK_FEATURE(OSX_AUDIO, [OSX audio], osxaudiosrc osxaudiosink, [
|
|||
AC_CHECK_HEADER(CoreAudio/CoreAudio.h, HAVE_OSX_AUDIO="yes", HAVE_OSX_AUDIO="no")
|
||||
])
|
||||
|
||||
dnl *** OS X video ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
|
||||
HAVE_OSX_VIDEO="no"
|
||||
case "$host" in
|
||||
*-*darwin*)
|
||||
GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
|
||||
AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
|
||||
])
|
||||
;;
|
||||
esac
|
||||
|
||||
dnl *** QuickCam ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
|
||||
GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
|
||||
|
@ -1856,6 +1877,7 @@ sys/dxr3/Makefile
|
|||
sys/glsink/Makefile
|
||||
sys/oss/Makefile
|
||||
sys/osxaudio/Makefile
|
||||
sys/osxvideo/Makefile
|
||||
sys/qcam/Makefile
|
||||
sys/sunaudio/Makefile
|
||||
sys/v4l/Makefile
|
||||
|
|
Loading…
Reference in a new issue