Package: latd
Version: 1.29
Severity: important
Tags: patch
User: [email protected]
Usertags: kfreebsd
Hi,
your package FTBFS on GNU/kFreeBSD due to some missing includes. Short
summary: cstring in the interfaces.h header, plus iostream to make it
possible to use std::*; this makes string unneeded in interfaces-bpf.cc,
while cstdlib is required.
Build logs at the usual place:
https://buildd.debian.org/status/package.php?suite=unstable&p=latd
Thanks for considering.
Mraw,
KiBi.
--- a/interfaces-bpf.cc
+++ b/interfaces-bpf.cc
@@ -40,7 +40,7 @@
#endif
#include <netinet/in.h>
-#include <string>
+#include <cstdlib>
#include "utils.h"
#define _LATD_INTERFACES_IMPL
--- a/interfaces.h
+++ b/interfaces.h
@@ -21,6 +21,9 @@
// See linux-interface.cc for example implementation.
+#include <cstring>
+#include <iostream>
+
class LATinterfaces
{
protected: