diff options
author | 2020-04-29 15:31:19 -0700 | |
---|---|---|
committer | 2020-04-29 15:31:19 -0700 | |
commit | 360371f79c48f15bbcee7aeecacf97a899913b25 (patch) | |
tree | cfccbf6ede96666eaafff463e4296c714da16d8b /configure | |
parent | Fix plural typo in documentation (GH-19799) (diff) | |
download | cpython-360371f79c48f15bbcee7aeecacf97a899913b25.tar.gz cpython-360371f79c48f15bbcee7aeecacf97a899913b25.tar.bz2 cpython-360371f79c48f15bbcee7aeecacf97a899913b25.zip |
bpo-40291: Add support for CAN_J1939 sockets (GH-19538)
Add support for CAN_J1939 sockets that wrap SAE J1939 protocol
functionality provided by Linux 5.4+ kernels.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 29d5f4ce667..a8a35d0defc 100755 --- a/configure +++ b/configure @@ -8282,8 +8282,8 @@ fi done -# On Linux, can.h and can/raw.h require sys/socket.h -for ac_header in linux/can.h linux/can/raw.h linux/can/bcm.h +# On Linux, can.h, can/bcm.h, can/j1939.h, can/raw.h require sys/socket.h +for ac_header in linux/can.h linux/can/bcm.h linux/can/j1939.h linux/can/raw.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " |