diff mbox series

[BlueZ] gdbus: define MAX_INPUT for musl

Message ID 20241102161018.2518100-1-gudni.m.g@gmail.com (mailing list archive)
State Accepted
Commit 9d69dba21f1e46b34cdd8ae27fec11d0803907ee
Headers show
Series [BlueZ] gdbus: define MAX_INPUT for musl | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/CheckPatch success CheckPatch PASS
tedd_an/GitLint success Gitlint PASS
tedd_an/BuildEll success Build ELL PASS
tedd_an/BluezMake success Bluez Make PASS
tedd_an/MakeCheck success Bluez Make Check PASS
tedd_an/MakeDistcheck success Make Distcheck PASS
tedd_an/CheckValgrind success Check Valgrind PASS
tedd_an/CheckSmatch success CheckSparse PASS
tedd_an/bluezmakeextell success Make External ELL PASS
tedd_an/IncrementalBuild success Incremental Build PASS
tedd_an/ScanBuild success Scan Build PASS

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
patchwork-bot+bluetooth@kernel.org Nov. 5, 2024, 2:40 a.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Sat,  2 Nov 2024 16:10:18 +0000 you wrote:
> This is the same solution as was done in src/shared/util.c
> ---
>  gdbus/object.c | 6 ++++++
>  1 file changed, 6 insertions(+)

Here is the summary with links:
  - [BlueZ] gdbus: define MAX_INPUT for musl
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=9d69dba21f1e

You are awesome, thank you!
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...)