diff options
author | Vincent Bernat <bernat@luffy.cx> | 2012-05-22 22:29:17 +0200 |
---|---|---|
committer | Vincent Bernat <bernat@luffy.cx> | 2012-06-25 19:03:23 +0200 |
commit | 08d7f6533ecc0f935a76918c462982004534864d (patch) | |
tree | 0e67590a8a2aba551439c46bfa8b33d7fba4feb7 /bgpd/Makefile.am | |
parent | 6b1e37f8537fa2a4560de32e83ca5089763e2d39 (diff) |
build: use net-snmp-config to configure NetSNMP
The correct method to link to NetSNMP is to use net-snmp-config (which
is like pkg-config). Explicit link to libcrypto is also dropped
(NetSNMP libs are linked to libcrypto, no need to link Quagga to
it). Moreover, @SNMP_INCLUDES@ is dropped because useless. Due to a
bug in configure.ac, it was properly populated.
Diffstat (limited to 'bgpd/Makefile.am')
-rw-r--r-- | bgpd/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/Makefile.am b/bgpd/Makefile.am index e5ee893a..9928734e 100644 --- a/bgpd/Makefile.am +++ b/bgpd/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in. -INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib @SNMP_INCLUDES@ +INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 |