1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# BEGIN COPYRIGHT BLOCK
# Copyright (C) 2006 Red Hat, Inc.
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# END COPYRIGHT BLOCK
AC_CHECKING(for Net-SNMP)
dnl - check for --with-netsnmp
AC_MSG_CHECKING(for --with-netsnmp)
AC_ARG_WITH(netsnmp, AS_HELP_STRING([--with-netsnmp@<:@=PATH@:>@],[Net-SNMP directory]),
[
if test "$withval" = "yes"; then
AC_MSG_RESULT(yes)
elif test "$withval" = "no"; then
AC_MSG_RESULT(no)
AC_MSG_ERROR([Net-SNMP is required.])
elif test -d "$withval" -a -d "$withval/lib" -a -d "$withval/include"; then
AC_MSG_RESULT([using $withval])
NETSNMPDIR=$withval
if test -f "$withval/include/net-snmp/net-snmp-includes.h"; then
netsnmp_inc="-I$withval/include"
else
AC_MSG_ERROR(net-snmp-config.h not found)
fi
netsnmp_lib="-L$withval/lib"
netsnmp_libdir="$withval/lib"
else
AC_MSG_RESULT(yes)
AC_MSG_ERROR([$withval not found])
fi
],
AC_MSG_RESULT(yes))
dnl - check for --with-netsnmp-inc
AC_MSG_CHECKING(for --with-netsnmp-inc)
AC_ARG_WITH(netsnmp-inc, AS_HELP_STRING([--with-netsnmp-inc=PATH],[Net-SNMP include directory]),
[
if test -f "$withval/net-snmp/net-snmp-includes.h"; then
AC_MSG_RESULT([using $withval])
netsnmp_inc="-I$withval"
else
echo
AC_MSG_ERROR([$withval/net-snmp/net-snmp-includes.h not found])
fi
],
AC_MSG_RESULT(no))
dnl - check for --with-netsnmp-lib
AC_MSG_CHECKING(for --with-netsnmp-lib)
AC_ARG_WITH(netsnmp-lib, AS_HELP_STRING([--with-netsnmp-lib=PATH],[Net-SNMP library directory]),
[
if test -d "$withval"
then
AC_MSG_RESULT([using $withval])
netsnmp_lib="-L$withval"
netsnmp_libdir="$withval"
else
echo
AC_MSG_ERROR([$withval not found])
fi
],
AC_MSG_RESULT(no))
dnl - look in standard system locations
if test -z "$netsnmp_inc" -o -z "$netsnmp_lib"; then
AC_MSG_CHECKING(for net-snmp-includes.h)
if test -f /usr/include/net-snmp/net-snmp-includes.h; then
AC_MSG_RESULT([using /usr/include/net-snmp/net-snmp-includes.h])
netsnmp_inc="-I/usr/include"
else
AC_MSG_RESULT(no)
AC_MSG_ERROR([net-snmp not found, specify with --with-netsnmp.])
fi
fi
dnl - find dependent libs with net-snmp-config
if test -n "$netsnmp_inc"; then
if test -x "$NETSNMPDIR/bin/net-snmp-config"; then
NETSNMP_CONFIG=$NETSNMPDIR/bin/net-snmp-config
else
AC_PATH_PROG(NETSNMP_CONFIG, net-snmp-config)
fi
if test -n "$NETSNMP_CONFIG"; then
netsnmp_link=`$NETSNMP_CONFIG --agent-libs`
else
AC_MSG_ERROR([net-snmp-config not found, specify with --with-netsnmp.])
fi
else
AC_MSG_ERROR([Net-SNMP not found, specify with --with-netsnmp.])
fi
|