~ubuntu-branches/ubuntu/trusty/net-snmp/trusty

« back to all changes in this revision

Viewing changes to agent/mibgroup/hardware/memory.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-12-08 14:59:50 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208145950-u1tykhpw56nyzqik
Tags: 5.4.1~dfsg-4ubuntu1
* Merge from debian unstable.
* Remaining Ubuntu changes:
  - Remove stop links from rc0 and rc6
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - Symlink common files between the packages, CDBS ought to handle that
    for us automatically.
* The latest Debian changes has dropped history from the changelog. Slot in
  the Ubuntu changes as best I can. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
config_require(hardware/memory/hw_mem)
2
 
config_arch_require(linux, hardware/memory/memory_linux)
 
2
 
 
3
#if defined(linux)
 
4
config_require(hardware/memory/memory_linux)
 
5
 
 
6
#elif (defined(darwin7) || defined(darwin8) || defined(darwin9))
 
7
config_require(hardware/memory/memory_darwin)
 
8
 
 
9
#elif (defined(freebsd2) || defined(freebsd3) || defined(freebsd4)  || defined(freebsd5)|| defined(freebsd6))
 
10
config_require(hardware/memory/memory_freebsd)
 
11
 
 
12
#elif (defined(netbsd) || defined(netbsd1) || defined(netbsdelf) || defined(netbsdelf2)|| defined(netbsdelf3) || defined(openbsd2) || defined(openbsd3) || defined(openbsd4))
 
13
config_require(hardware/memory/memory_netbsd)
 
14
 
 
15
#elif (defined(aix4) || defined(aix5))
 
16
config_require(hardware/memory/memory_aix)
 
17
 
 
18
#elif (defined(solaris2))
 
19
config_require(hardware/memory/memory_solaris)
 
20
 
 
21
#elif (defined(irix6))
 
22
config_require(hardware/memory/memory_irix)
 
23
 
 
24
#elif (defined(dynix))
 
25
config_require(hardware/memory/memory_dynix)
 
26
 
 
27
#elif (defined(hpux10) || defined(hpux11))
 
28
config_require(hardware/memory/memory_hpux)
 
29
 
 
30
#else
 
31
config_require(hardware/memory/memory_null)
 
32
#endif