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
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...)