[issue30512] CAN Socket support for NetBSD

2022-01-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 3.7 ___ Python tracker ___ _

[issue30512] CAN Socket support for NetBSD

2022-01-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 40fcd16889028bd3cd2289e0f8a2af43f17a5824 by Thomas Klausner in branch 'main': bpo-30512: Add CAN Socket support for NetBSD (GH-30066) https://github.com/python/cpython/commit/40fcd16889028bd3cd2289e0f8a2af43f17a5824 -- _

[issue30512] CAN Socket support for NetBSD

2021-12-11 Thread Thomas Klausner
Change by Thomas Klausner : -- pull_requests: +28286 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30066 ___ Python tracker ___ _

[issue30512] CAN Socket support for NetBSD

2017-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The compilation will be fixed in issue31927. I have wrote similar patch for adding CAN Socket support on NetBSD. I'll combine the patches later. This is a new feature and can be added only in 3.7. -- assignee: -> serhiy.storchaka components: +Exte

[issue30512] CAN Socket support for NetBSD

2017-05-30 Thread Thomas Klausner
New submission from Thomas Klausner: NetBSD recently got support for CAN. The existing Linux support for CAN partially detects this, but then fails to build. The attached patch against 3.6.1 (from Manuel Bouyer ) fixes this problem and adds proper NetBSD support for CAN sockets. -- co