From f9ff9beb462c6f01f7ede573175a4646c5f3c759 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Tue, 31 Jan 2006 22:17:30 +0000 Subject: [PATCH] * Disable the non functional QT/Quartz output on the intel machines. We should first fix it on OSX, and currently it's annoying the intel debugging proces. --- modules/gui/macosx/macosx.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/gui/macosx/macosx.m b/modules/gui/macosx/macosx.m index ee8b5831fa..5c459be8ee 100644 --- a/modules/gui/macosx/macosx.m +++ b/modules/gui/macosx/macosx.m @@ -83,6 +83,7 @@ vlc_module_begin(); set_subcategory( SUBCAT_INTERFACE_GENERAL ); add_bool( "macosx-embedded", 1, NULL, EMBEDDED_TEXT, EMBEDDED_LONGTEXT, VLC_FALSE ); +#if defined( __ppc__ ) || defined (__ppc64__) add_submodule(); set_description( _("Quartz video") ); set_capability( "video output", 100 ); @@ -99,6 +100,7 @@ vlc_module_begin(); VLC_TRUE ); add_bool( "macosx-background", 0, NULL, BACKGROUND_TEXT, BACKGROUND_LONGTEXT, VLC_FALSE ); +#endif add_submodule(); set_description( "Mac OS X OpenGL" ); set_capability( "opengl provider", 100 ); -- GitLab