configure.ac: Whoops, my fault...fixed build issues

Original commit message from CVS:
2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali.org>

* configure.ac:
Whoops, my fault...fixed build issues
This commit is contained in:
Zaheer Abbas Merali 2004-06-22 06:27:37 +00:00
parent ee158654d5
commit 0e7069c2cb
2 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org>
* configure.ac:
Whoops, my fault...fixed build issues
2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org>
* configure.ac:

View file

@ -44,9 +44,9 @@ AM_PROG_CC_STDC
AM_PROG_AS
AS="${CC}"
dnl objective-c for OSX (should check if os is darwin)
AM_CONDITIONAL([am__fastdepOBJC], false)
case "$host" in
*-*darwin*)
AM_CONDITIONAL([am__fastdepOBJC], false)
OBJC="${CC}"
AC_SUBST(OBJC)
OBJCFLAGS="${CFLAGS}"
@ -489,11 +489,16 @@ GST_CHECK_FEATURE(OSX_AUDIO, [OSX audio], osxaudiosrc osxaudiosink, [
dnl *** OS X video ***
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
HAVE_OSX_VIDEO="no"
GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
])
dnl in case header OpenGL/gl.h is found on other platforms
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")
])
dnl do nothing
;;
*)
HAVE_OSX_VIDEO="no"
;;
esac