diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | dvbplayer.c | 3 | ||||
-rw-r--r-- | interface.c | 3 | ||||
-rw-r--r-- | plugin.c | 3 |
4 files changed, 8 insertions, 4 deletions
@@ -1393,8 +1393,9 @@ Video Disk Recorder Revision History - Changed the cDevice class to allow plugins to implement their own devices (see PLUGINS.html for details). -2002-08-10: Version 1.1.7 +2002-08-11: Version 1.1.7 - Adapted VDR to the NEWSTRUCT driver. To use the new driver, compile VDR with 'make NEWSTRUCT=1' (thanks to Holger Wächtler for some valuable advice). By default it currently still uses the old driver. +- Added some missing #includes (thanks to Martin Hammerschmid). diff --git a/dvbplayer.c b/dvbplayer.c index 1b608dda..159f1b53 100644 --- a/dvbplayer.c +++ b/dvbplayer.c @@ -4,11 +4,12 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbplayer.c 1.8 2002/07/27 11:57:48 kls Exp $ + * $Id: dvbplayer.c 1.9 2002/08/11 10:46:53 kls Exp $ */ #include "dvbplayer.h" #include <poll.h> +#include <stdlib.h> #include "recording.h" #include "ringbuffer.h" #include "thread.h" diff --git a/interface.c b/interface.c index fa36b4cb..c468223f 100644 --- a/interface.c +++ b/interface.c @@ -4,11 +4,12 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 1.52 2002/06/16 13:23:40 kls Exp $ + * $Id: interface.c 1.53 2002/08/11 10:47:04 kls Exp $ */ #include "interface.h" #include <ctype.h> +#include <stdlib.h> #include <unistd.h> #include "i18n.h" #include "osd.h" @@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: plugin.c 1.5 2002/05/13 16:31:09 kls Exp $ + * $Id: plugin.c 1.6 2002/08/11 10:47:11 kls Exp $ */ #include "plugin.h" #include <ctype.h> #include <dirent.h> #include <dlfcn.h> +#include <stdlib.h> #include <time.h> #include "config.h" |