From: hasso Date: Mon, 28 Mar 2005 15:38:16 +0000 (+0000) Subject: * extract.pl.in: Use SNMP_INCLUDES to avoid warnings if compiling with X-Git-Tag: frr-2.0-rc1~3130 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=7f22396bdc304c14f1c7ef0402ba9bd1450661b7;p=mirror%2Ffrr.git * extract.pl.in: Use SNMP_INCLUDES to avoid warnings if compiling with snmp support. --- diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index 9d6d3c09a6..ecf7c2fcc6 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,8 @@ +2005-03-28 Hasso Tepper + + * extract.pl.in: Use SNMP_INCLUDES to avoid warnings if compiling with + snmp support. + 2005-03-09 Hasso Tepper * vtysh_config.c: Move password commands to the AAA_NODE. It diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index ef8c34ff3d..444fc9a544 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -61,7 +61,7 @@ $ignore{'"show history"'} = "ignore"; foreach (@ARGV) { $file = $_; - open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib $file |"); + open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib @SNMP_INCLUDES@ $file |"); local $/; undef $/; $line = ; close (FH);