Closed tot0rokr closed 1 month ago
@tot0rokr try with the following changes:
diff --git a/doc/l2cap.rst b/doc/l2cap.rst
index 2486f7c6f55a..f90f88222ae8 100644
--- a/doc/l2cap.rst
+++ b/doc/l2cap.rst
@@ -16,7 +16,7 @@ L2CAP protocol
SYNOPSIS
========
-.. code-block:: c
+.. code-block::
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
@@ -40,7 +40,7 @@ connection, allowing for concurrent data transmission using different protocols.
SOCKET ADDRESS
==============
-.. code-block:: c
+.. code-block::
struct sockaddr_l2 {
sa_family_t l2_family;
@@ -52,7 +52,7 @@ SOCKET ADDRESS
Example:
-.. code-block:: c
+.. code-block::
struct sockaddr_l2 addr;
@@ -90,7 +90,7 @@ Channel security level, possible values:
Example:
-.. code-block:: c
+.. code-block::
int level = BT_SECURITY_HIGH;
int err = setsockopt(l2cap_socket, SOL_BLUETOOTH, BT_SECURITY, &level,
@@ -116,7 +116,7 @@ authorization at profile level, possible values:
Example:
-.. code-block:: c
+.. code-block::
int defer_setup = 1;
int err = setsockopt(l2cap_socket, SOL_BLUETOOTH, BT_DEFER_SETUP,
diff --git a/doc/rfcomm.rst b/doc/rfcomm.rst
index 4e43094b797d..b20c7544b64f 100644
--- a/doc/rfcomm.rst
+++ b/doc/rfcomm.rst
@@ -16,7 +16,7 @@ RFCOMM protocol
SYNOPSIS
========
-.. code-block:: c
+.. code-block::
#include <sys/socket.h>
#include <bluetooth/bluetooth.h>
@@ -36,7 +36,7 @@ the 9 circuits of RS-232 (EIATIA-232-E) serial ports.
SOCKET ADDRESS
==============
-.. code-block:: c
+.. code-block::
struct sockaddr_rc {
sa_family_t rc_family;
@@ -46,7 +46,7 @@ SOCKET ADDRESS
Example:
-.. code-block:: c
+.. code-block::
struct sockaddr_rc addr;
@@ -78,7 +78,7 @@ Channel security level, possible values:
Example:
-.. code-block:: c
+.. code-block::
int level = BT_SECURITY_HIGH;
int err = setsockopt(rfcomm_socket, SOL_BLUETOOTH, BT_SECURITY, &level,
@@ -104,7 +104,7 @@ authorization at profile level, possible values:
Example:
-.. code-block:: c
+.. code-block::
int defer_setup = 1;
int err = setsockopt(rfcomm_socket, SOL_BLUETOOTH, BT_DEFER_SETUP,
@Vudentz Hi, the patch worked fine for me. I tested it on 615fc3592a57e32b42691a16b5d5cc88e378cbc1. Thanks a lot.
Hi, An issue that was not present in previous builds of 3.65 is now present in the latest commit build.
I tried build on over 4 core of Arm64, Debian 10.
It says that I don't have the Pygment package, and I've tried downloading it with pip3 or even trying it in a virtual environment to solve it.
I use the following build settings, and I'm wondering where the problem is occurring.
Additionally, there is a warning log from the configure run. The relevant apt packages are also attached.