From 773e42dff813bb18cb25016ae1fe1ed0886fd484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Fran=C3=A7ois=20Natali?= Date: Tue, 5 Feb 2013 19:42:01 +0100 Subject: Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by Brian Thorne. --- Modules/socketmodule.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Modules/socketmodule.h') diff --git a/Modules/socketmodule.h b/Modules/socketmodule.h index 48e0fd4f60..b83f9af3bd 100644 --- a/Modules/socketmodule.h +++ b/Modules/socketmodule.h @@ -80,6 +80,10 @@ typedef int socklen_t; #include #endif +#ifdef HAVE_LINUX_CAN_BCM_H +#include +#endif + #ifdef HAVE_SYS_SYS_DOMAIN_H #include #endif -- cgit v1.2.1