You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/chrpath/files/chrpath-0.16-solaris.patch

20 lines
349 B

protos: add bswap macros for Solaris
--- a/protos.h
+++ b/protos.h
@@ -1,7 +1,14 @@
#ifndef PROTOS_H
#define PROTOS_H
+#if defined(__sun)
+#include <sys/byteorder.h>
+#define bswap_16(x) BSWAP_16(x)
+#define bswap_32(x) BSWAP_32(x)
+#define bswap_64(x) BSWAP_64(x)
+#else
#include <byteswap.h>
+#endif
#include <elf.h>
#include "config.h"