]> git.sesse.net Git - vlc/commitdiff
MacOS: don't compile opengl provider in the GUI since it doesn't compile...
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jul 2010 15:56:20 +0000 (17:56 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jul 2010 16:09:23 +0000 (18:09 +0200)
This doesn't make it usable though, but noone seems to care anyway...
WARNING: this is a HUGE hack. It will kill yourself and your kittens

modules/gui/macosx/Modules.am
modules/gui/macosx/extended.m
modules/gui/macosx/intf.m
modules/gui/macosx/macosx.m

index b07dde5628d002e85e6831c14ca082f5dda235ca..647c730ee3ea95f836cfa68ee7d811c28289d09a 100644 (file)
@@ -35,9 +35,6 @@ SOURCES_macosx = \
        simple_prefs.m \
        output.h \
        output.m \
-       vout.m \
-       voutgl.m \
-       vout.h \
        wizard.h \
        wizard.m \
        extended.h \
index 9f11a1811bf1e2eada9e56486908af58fe66d774..497730c88aea671cf3465c58740c1e32336da05e 100644 (file)
@@ -417,7 +417,7 @@ static VLCExtended *_o_sharedInstance = nil;
 
     if( p_vout != NULL )
     {
-        p_real_vout = [VLCVoutView realVout: p_vout];
+        p_real_vout = NULL; // [VLCVoutView realVout: p_vout];
         var_Set( p_real_vout, "macosx-opaqueness", val );
 
         while ((o_window = [o_enumerator nextObject]))
index ac819749a25ea5ed11dac84d376c21942763c808..21098e9c370a0183a735a55bf77feffe6e77fd78 100644 (file)
@@ -353,7 +353,7 @@ static VLCMain *_o_sharedMainInstance = nil;
     o_wizard = [[VLCWizard alloc] init];
     o_extended = nil;
     o_bookmarks = [[VLCBookmarks alloc] init];
-    o_embedded_list = [[VLCEmbeddedList alloc] init];
+    o_embedded_list = NULL; // [[VLCEmbeddedList alloc] init];
     o_coredialogs = [[VLCCoreDialogProvider alloc] init];
     o_info = [[VLCInfo alloc] init];
 
index 5346b0a2a4e04f564d91c74228cc45a57bb9bf4d..ebb5c3aaa4125c346e8fccb4d3426b2898e29323 100644 (file)
@@ -8,7 +8,7 @@
  *          Eugenio Jarosiewicz <ej0@cise.ufl.edu>
  *          Florian G. Pflug <fgp@phlo.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
- *          
+ *
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 int  OpenIntf     ( vlc_object_t * );
 void CloseIntf    ( vlc_object_t * );
 
+#if 0
 int  OpenVideoGL  ( vlc_object_t * );
 void CloseVideoGL ( vlc_object_t * );
+#endif
 
 /*****************************************************************************
  * Module descriptor
@@ -121,6 +123,7 @@ vlc_module_begin ()
     add_bool( "macosx-mediakeys-background", true, NULL, USE_MEDIAKEYS_BACKGROUND_TEXT, USE_MEDIAKEYS_BACKGROUND_LONGTEXT,
              false )
 
+#if 0
     add_submodule ()
         set_description( "Mac OS X OpenGL" )
         set_capability( "opengl provider", 100 )
@@ -138,5 +141,6 @@ vlc_module_begin ()
                   false )
         add_bool( "macosx-background", false, NULL, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
                   false )
+#endif
 vlc_module_end ()