2013/7/7 Laurent Bigonville <[email protected]>: > /usr/include/net/if_bridgevar.h is explicitly using types like > "uint32_t" > > Shouldn't an include for <stdint.h> be added?
This is intentional upstream policy (to avoid header pollution). Programs which include <net/if_bridevar.h> are expected to include <stdint.h> first. However, because <stdint.h> is not available to kernel code. A lot of code from FreeBSD tends to use <sys/types.h> instead, even in cases where it is only intended for userland. So you probably just need to replace that <sys/types.h> in your code. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/CAOfDtXO8tqB_rAy27bkkFEh92VC_QbPrHB_jN=32eo=fqd2...@mail.gmail.com

