[MPlayer-cvslog] r33569 - trunk/mplayer.c

cehoyos subversion at mplayerhq.hu
Tue Jun 7 02:08:07 CEST 2011


Author: cehoyos
Date: Tue Jun  7 02:08:06 2011
New Revision: 33569

Log:
Fix compilation without gui.

Modified:
   trunk/mplayer.c

Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c	Mon Jun  6 17:11:24 2011	(r33568)
+++ trunk/mplayer.c	Tue Jun  7 02:08:06 2011	(r33569)
@@ -4169,7 +4169,11 @@ goto_next_file:  // don't jump here afte
     }
 #endif
 
-    if ((use_gui && guiIntfStruct.Playing) || mpctx->playtree_iter != NULL || player_idle_mode) {
+    if (
+#ifdef CONFIG_GUI
+        (use_gui && guiIntfStruct.Playing) ||
+#endif
+                                              mpctx->playtree_iter != NULL || player_idle_mode) {
         if (!mpctx->playtree_iter)
             filename = NULL;
         mpctx->eof = 0;


More information about the MPlayer-cvslog mailing list