diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-01-18 14:33:04 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-02-16 16:40:56 +0100 | 
| commit | a9338fa4490627df2263649de6dcec0774baad8e (patch) | |
| tree | 2f01cdc409ffd16540d041a5e975b9cd649e8b59 /configure.ac | |
| parent | 89e2cbd38f54c6e6b294fd1238f55e366f75d085 (diff) | |
pim6d: IPv6-adjust mroute code
This is just hitting the pim_mroute code with a hammer until it doesn't
print warnings anymore.  This is NOT quite tested or working yet, it
just compiles.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bdddf4b846..32ee560df9 100644 --- a/configure.ac +++ b/configure.ac @@ -1526,6 +1526,13 @@ AC_CHECK_HEADERS([linux/mroute.h], [], [],[  	#include <linux/types.h>  ]) +AC_CHECK_HEADERS([linux/mroute6.h], [], [],[ +	#include <sys/socket.h> +	#include <netinet/in.h> +	#define _LINUX_IN_H             /* For Linux <= 2.6.25 */ +	#include <linux/types.h> +]) +  m4_define([FRR_INCLUDES],  FRR_INCLUDES  [#ifdef HAVE_LINUX_MROUTE_H  | 
