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