diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 23:02:00 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 23:02:00 -0400 |
commit | cf7fe6007ee6008037e63c8d9fc7ad9af8bc8d23 (patch) | |
tree | 80afe4c0d76ef0eb341208a2390de1cfa9df56d0 /src | |
parent | 88e4fa03427252304dbbae078ce394269bfc71e9 (diff) | |
download | xine-lib-cf7fe6007ee6008037e63c8d9fc7ad9af8bc8d23.tar.gz xine-lib-cf7fe6007ee6008037e63c8d9fc7ad9af8bc8d23.tar.bz2 |
X11 and video output plugin configuration check cleanups
-- Move x11.m4 back into configure.ac, because AC_PATH_XTRA was behaving oddly
inside a macro. That code is now cleaned up enough so that it's not too
painful having it there.
-- Move opengl.m4 inline into video_out.m4
-- Fix x11 checks to work on Darwin, including XShm checks, Xv checks, OpenGL,
and GLU checks.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/Makefile.am b/src/video_out/Makefile.am index a37eae3eb..bb3552039 100644 --- a/src/video_out/Makefile.am +++ b/src/video_out/Makefile.am @@ -38,7 +38,7 @@ endif if HAVE_XXMC xxmc_module = xineplug_vo_out_xxmc.la endif -if HAVE_OPENGL +if ENABLE_OPENGL opengl_module = xineplug_vo_out_opengl.la endif if ENABLE_SYNCFB |