diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-02 14:56:45 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-02 14:56:45 +0100 |
commit | 495f8b06697a8478a130edd4a7f65ea59bdc9388 (patch) | |
tree | bd49e4d5ac8e78ba33ea184d47a98f8c81506847 /interface.c | |
parent | 1aca768a63b5085749e61ac239d5ac95d5617bbc (diff) | |
download | vdr-495f8b06697a8478a130edd4a7f65ea59bdc9388.tar.gz vdr-495f8b06697a8478a130edd4a7f65ea59bdc9388.tar.bz2 |
New compile time option REMOTE=NONE
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/interface.c b/interface.c index ef8368ae..2346f6ca 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 1.33 2000/12/09 11:04:10 kls Exp $ + * $Id: interface.c 1.34 2001/02/02 14:49:39 kls Exp $ */ #include "interface.h" @@ -26,8 +26,10 @@ cInterface::cInterface(int SVDRPport) rcIo = new cRcIoRCU("/dev/ttyS1"); #elif defined(REMOTE_LIRC) rcIo = new cRcIoLIRC("/dev/lircd"); -#else +#elif defined(REMOTE_KBD) rcIo = new cRcIoKBD; +#else + rcIo = new cRcIoBase; // acts as a dummy device #endif rcIo->SetCode(Keys.code, Keys.address); if (SVDRPport) |