diff options
author | rofafor <rofafor> | 2008-11-11 19:04:02 +0000 |
---|---|---|
committer | rofafor <rofafor> | 2008-11-11 19:04:02 +0000 |
commit | 22451cc05ce7a7e0105450c0ca93f8c3e7ac8ac0 (patch) | |
tree | 375570e3e5d6c6f1364a174e3173cc039e495f75 | |
parent | 03eeb9e3367494aa2e9a02d4da94e706ef005daf (diff) | |
download | xineliboutput-22451cc05ce7a7e0105450c0ca93f8c3e7ac8ac0.tar.gz xineliboutput-22451cc05ce7a7e0105450c0ca93f8c3e7ac8ac0.tar.bz2 |
Cleaned up compile time warnings.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | xine_frontend.c | 5 | ||||
-rw-r--r-- | xine_frontend.h | 4 | ||||
-rw-r--r-- | xine_input_vdr.c | 4 |
4 files changed, 10 insertions, 7 deletions
@@ -4,7 +4,7 @@ # See the main source file 'xineliboutput.c' for copyright information and # how to reach the author. # -# $Id: Makefile,v 1.57 2008-11-11 11:52:24 phintuka Exp $ +# $Id: Makefile,v 1.58 2008-11-11 19:04:02 rofafor Exp $ # # The official name of this plugin. @@ -115,7 +115,7 @@ endif config.mak: Makefile configure @echo Running configure ./configure --cc=$(CC) --cxx=$(CXX) $(CONFIGURE_OPTS) -include config.mak +-include config.mak ### ### The name of the distribution archive: diff --git a/xine_frontend.c b/xine_frontend.c index b7112f9e..7ae49019 100644 --- a/xine_frontend.c +++ b/xine_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.c,v 1.76 2008-11-11 17:14:43 phintuka Exp $ + * $Id: xine_frontend.c,v 1.77 2008-11-11 19:04:02 rofafor Exp $ * */ @@ -35,8 +35,9 @@ #undef MAX #define MAX(a,b) ( (a) > (b) ? (a) : (b)) +#ifdef FE_STANDALONE static int verbose_xine_log = 0; - +#endif char *strn0cpy(char *dest, const char *src, int n) { diff --git a/xine_frontend.h b/xine_frontend.h index 38205638..79ae6d6a 100644 --- a/xine_frontend.h +++ b/xine_frontend.h @@ -4,13 +4,15 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_frontend.h,v 1.8 2008-06-16 21:24:36 phintuka Exp $ + * $Id: xine_frontend.h,v 1.9 2008-11-11 19:04:02 rofafor Exp $ * */ #ifndef _XINE_FRONTEND_H #define _XINE_FRONTEND_H +#include "xine_osd_command.h" + #ifdef __cplusplus extern "C" { #endif diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 7fd0d0ad..4fc309c9 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.191 2008-11-11 11:00:24 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.192 2008-11-11 19:04:02 rofafor Exp $ * */ @@ -57,7 +57,7 @@ # ifdef HAVE_LIBAVUTIL # include <libavutil/mem.h> # else -# error plugin was configured without libavutil. It can't be compiled against xine-lib 1.2 ! +# error "plugin was configured without libavutil. It can't be compiled against xine-lib 1.2 !" # endif #endif |