diff mbox series

[BlueZ] gdbus: define MAX_INPUT for musl

Message ID 20241102161018.2518100-1-gudni.m.g@gmail.com
State New
Headers show
Series [BlueZ] gdbus: define MAX_INPUT for musl | expand

Commit Message

Guðni Már Gilbert Nov. 2, 2024, 4:10 p.m. UTC
This is the same solution as was done in src/shared/util.c
---
 gdbus/object.c | 6 ++++++
 1 file changed, 6 insertions(+)

Comments

bluez.test.bot@gmail.com Nov. 2, 2024, 5:43 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=905688

---Test result---

Test Summary:
CheckPatch                    PASS      0.25 seconds
GitLint                       PASS      0.21 seconds
BuildEll                      PASS      24.81 seconds
BluezMake                     PASS      1627.06 seconds
MakeCheck                     PASS      13.31 seconds
MakeDistcheck                 PASS      179.51 seconds
CheckValgrind                 PASS      252.39 seconds
CheckSmatch                   PASS      356.55 seconds
bluezmakeextell               PASS      119.70 seconds
IncrementalBuild              PASS      1406.49 seconds
ScanBuild                     PASS      996.64 seconds



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/gdbus/object.c b/gdbus/object.c
index 84f116bf1..7b0476f1a 100644
--- a/gdbus/object.c
+++ b/gdbus/object.c
@@ -20,6 +20,12 @@ 
 #include <dbus/dbus.h>
 
 #include "gdbus.h"
+
+/* define MAX_INPUT for musl */
+#ifndef MAX_INPUT
+#define MAX_INPUT _POSIX_MAX_INPUT
+#endif
+
 #include "src/shared/util.h"
 
 #define info(fmt...)