mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 01:51:26 +00:00
FreeBSD insists that <sys/types.h> be included before <netinet/in.h> and that <netinet/in.h> be included before <arpa/inet.h>. This adds guards to the "sparse" headers to yield a warning if this order is violated. This commit also adjusts the order of many #includes to suit this requirement. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Justin Pettit <jpettit@ovn.org>
18 lines
612 B
Makefile
18 lines
612 B
Makefile
noinst_HEADERS += \
|
|
include/sparse/arpa/inet.h \
|
|
include/sparse/assert.h \
|
|
include/sparse/bmi2intrin.h \
|
|
include/sparse/emmintrin.h \
|
|
include/sparse/math.h \
|
|
include/sparse/netinet/in.h \
|
|
include/sparse/netinet/ip6.h \
|
|
include/sparse/netpacket/packet.h \
|
|
include/sparse/pthread.h \
|
|
include/sparse/rte_atomic.h \
|
|
include/sparse/rte_lcore.h \
|
|
include/sparse/rte_memcpy.h \
|
|
include/sparse/rte_vect.h \
|
|
include/sparse/sys/socket.h \
|
|
include/sparse/sys/types.h \
|
|
include/sparse/sys/wait.h
|