mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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:
parent
ee158654d5
commit
0e7069c2cb
2 changed files with 14 additions and 4 deletions
|
@ -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>
|
2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
13
configure.ac
13
configure.ac
|
@ -44,9 +44,9 @@ AM_PROG_CC_STDC
|
||||||
AM_PROG_AS
|
AM_PROG_AS
|
||||||
AS="${CC}"
|
AS="${CC}"
|
||||||
dnl objective-c for OSX (should check if os is darwin)
|
dnl objective-c for OSX (should check if os is darwin)
|
||||||
|
AM_CONDITIONAL([am__fastdepOBJC], false)
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*-*darwin*)
|
*-*darwin*)
|
||||||
AM_CONDITIONAL([am__fastdepOBJC], false)
|
|
||||||
OBJC="${CC}"
|
OBJC="${CC}"
|
||||||
AC_SUBST(OBJC)
|
AC_SUBST(OBJC)
|
||||||
OBJCFLAGS="${CFLAGS}"
|
OBJCFLAGS="${CFLAGS}"
|
||||||
|
@ -489,11 +489,16 @@ GST_CHECK_FEATURE(OSX_AUDIO, [OSX audio], osxaudiosrc osxaudiosink, [
|
||||||
dnl *** OS X video ***
|
dnl *** OS X video ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
|
||||||
HAVE_OSX_VIDEO="no"
|
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
|
case "$host" in
|
||||||
*-*darwin*)
|
*-*darwin*)
|
||||||
GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
|
dnl do nothing
|
||||||
AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
|
;;
|
||||||
])
|
*)
|
||||||
|
HAVE_OSX_VIDEO="no"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue