gdbus: define MAX_INPUT for musl

This is the same solution as was done in src/shared/util.c
This commit is contained in:
Guðni Már Gilbert 2024-11-02 16:10:18 +00:00 committed by Luiz Augusto von Dentz
parent 7322ec38fb
commit 9d69dba21f

View File

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