[Mplayer-cvslog] CVS: main mp_msg.c,1.21,1.22

Jürgen Keil CVS jkeil at mplayerhq.hu
Fri Dec 27 17:18:00 CET 2002


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv10391

Modified Files:
	mp_msg.c 
Log Message:
codec-cfg cannot be built when the gui is enabled - it fails to link with a
couple of undefined external references.
Problem is that mp_msg.c is included in the codec-cfg binary, but for codec-cfg
the gui code in mp_msg.c shouldn't be compiled in.


Index: mp_msg.c
===================================================================
RCS file: /cvsroot/mplayer/main/mp_msg.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- mp_msg.c	31 Aug 2002 16:20:07 -0000	1.21
+++ mp_msg.c	27 Dec 2002 16:17:57 -0000	1.22
@@ -7,7 +7,15 @@
 
 #include "config.h"
 
-#ifdef HAVE_NEW_GUI
+#if	defined(FOR_MENCODER) || defined(CODECS2HTML)
+#undef	ENABLE_GUI_CODE
+#elif	defined(HAVE_NEW_GUI)
+#define	ENABLE_GUI_CODE	HAVE_NEW_GUI
+#else
+#undef	ENABLE_GUI_CODE
+#endif
+
+#if ENABLE_GUI_CODE
 #include "Gui/mplayer/widgets.h"
 extern void gtkMessageBox( int type,char * str );
 extern int use_gui;
@@ -58,7 +66,7 @@
     va_end(va);
     tmp[MSGSIZE_MAX-1] = 0;
 
-#if defined(HAVE_NEW_GUI) && !defined(FOR_MENCODER)
+#if ENABLE_GUI_CODE
     if(use_gui)
     {
 	switch(x & 255)
@@ -106,7 +114,7 @@
     va_list va;
     if((x&255)>mp_msg_levels[x>>8]) return; // do not display
     va_start(va, format);
-#if defined( HAVE_NEW_GUI ) && !defined( FOR_MENCODER )
+#if ENABLE_GUI_CODE
     if(use_gui){
       char tmp[16*80];
       vsnprintf( tmp,8*80,format,va ); tmp[8*80-1]=0;




More information about the MPlayer-cvslog mailing list