diff options
Diffstat (limited to 'main/rabbitmq-c/musl-fix.patch')
-rw-r--r-- | main/rabbitmq-c/musl-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main/rabbitmq-c/musl-fix.patch b/main/rabbitmq-c/musl-fix.patch new file mode 100644 index 0000000000..e76b082f92 --- /dev/null +++ b/main/rabbitmq-c/musl-fix.patch @@ -0,0 +1,11 @@ +--- ./librabbitmq/amqp_private.h.orig ++++ ./librabbitmq/amqp_private.h +@@ -262,7 +262,7 @@ + } + + /* Determine byte order */ +-#if defined(__GLIBC__) ++#if defined(__linux__) + # include <endian.h> + # if (__BYTE_ORDER == __LITTLE_ENDIAN) + # define AMQP_LITTLE_ENDIAN |