> +#define __FAVOR_BSD 1 > #include <netinet/in_systm.h> > #include <netinet/in.h> > #include <netinet/ip.h> > #include <netinet/ip_icmp.h> > #include <netinet/tcp.h> > #include <netinet/udp.h> > +#undef __FAVOR_BSD
Shouldn't this kind of fix be in libbsd-dev? E.g. in overlay netinet/in.h: #if __FAVOR_BSD # include_next <netinet/in.h> #else # define __FAVOR_BSD 1 # include_next <netinet/in.h> # undef __FAVOR_BSD #endif -- Robert Millan -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/CAOfDtXNEGh0UBLAfVkUzf3EjR2RJA84_kTfQLwqUdvUdLx=m...@mail.gmail.com

