~ubuntu-branches/debian/lenny/net-snmp/lenny

« back to all changes in this revision

Viewing changes to agent/mibgroup/if-mib/data_access/interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-05-10 22:20:23 UTC
  • Revision ID: james.westby@ubuntu.com-20070510222023-3fr07xb9i17xvq32
Tags: upstream-5.3.1
ImportĀ upstreamĀ versionĀ 5.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * interface data access header
3
3
 *
4
 
 * $Id: interface.h,v 1.10 2004/11/16 23:42:03 rstory Exp $
 
4
 * $Id: interface.h,v 1.11 2005/10/28 15:29:22 rstory Exp $
5
5
 */
6
6
#ifndef NETSNMP_ACCESS_INTERFACE_CONFIG_H
7
7
#define NETSNMP_ACCESS_INTERFACE_CONFIG_H
20
20
 *    HPUX11 had different reuirements than other HPUX, that should
21
21
 *    be handled in the *_hpux.h header file.
22
22
 */
23
 
config_require(if-mib/data_access/interface_common)
 
23
config_require(if-mib/data_access/interface)
24
24
#if defined( linux )
25
 
config_require(if-mib/data_access/interface_linux);
26
 
config_require(if-mib/data_access/interface_ioctl);
 
25
config_require(if-mib/data_access/interface_linux)
 
26
config_require(if-mib/data_access/interface_ioctl)
27
27
#else
28
28
#   define NETSNMP_ACCESS_INTERFACE_NOARCH 1
29
29
#endif
30
30
 
31
 
/*
32
 
 * since the configure script will pick up this header and include it in
33
 
 * mib_module_includes.h, but actual interface structure definitions which
34
 
 * are used in other headers are defined in net-snmp/data_access/interface.h,
35
 
 * we need to ignore the normal convention of not including headers in
36
 
 * a header, or we will not be able to compile.
37
 
 */
38
 
#include <net-snmp/data_access/interface.h>
39
 
 
40
31
#endif /* NETSNMP_ACCESS_INTERFACE_CONFIG_H */