summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-02-09 16:03:22 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-02-09 16:03:22 +0100
commit00b28f19dbcab79596346bb4b74a9a944b35906d (patch)
tree4b15c193b33cadc0d72ed78cc943ab050fe38b3d /config.h
parenta6faae26b8d91ac085bbf38f9ad72102f65bc6f8 (diff)
downloadvdr-00b28f19dbcab79596346bb4b74a9a944b35906d.tar.gz
vdr-00b28f19dbcab79596346bb4b74a9a944b35906d.tar.bz2
Added a typedef for 'in_addr_t' to make it work with glibc < 2.2
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.h b/config.h
index 325f4ef2..8d259820 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.93 2002/02/03 15:16:21 kls Exp $
+ * $Id: config.h 1.94 2002/02/09 16:00:00 kls Exp $
*/
#ifndef __CONFIG_H
@@ -174,6 +174,8 @@ public:
const char *Execute(void);
};
+typedef uint32_t in_addr_t; //XXX from /usr/include/netinet/in.h (apparently this is not defined on systems with glibc < 2.2)
+
class cSVDRPhost : public cListObject {
private:
struct in_addr addr;