aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradamw <adamw@FreeBSD.org>2015-04-14 06:47:33 +0800
committeradamw <adamw@FreeBSD.org>2015-04-14 06:47:33 +0800
commit8b0f596786a36bff45bc11e812062b2c2fac96dd (patch)
tree05f45c87e3e052d9661e3bc91fa4bf8308d16683
parent7c59f65aae2ccb281571035782a58eff1006637d (diff)
downloadfreebsd-ports-gnome-8b0f596786a36bff45bc11e812062b2c2fac96dd.tar.gz
freebsd-ports-gnome-8b0f596786a36bff45bc11e812062b2c2fac96dd.tar.zst
freebsd-ports-gnome-8b0f596786a36bff45bc11e812062b2c2fac96dd.zip
I forgot to add a patch in r383947. PHT will not build without it. It
was present in the PR (199416, which I also got wrong in that commit). Noticed by: Ben Woods (maintainer)
-rw-r--r--multimedia/plexhometheater/files/patch-bsdendian66
1 files changed, 66 insertions, 0 deletions
diff --git a/multimedia/plexhometheater/files/patch-bsdendian b/multimedia/plexhometheater/files/patch-bsdendian
new file mode 100644
index 000000000000..97805ae3abf1
--- /dev/null
+++ b/multimedia/plexhometheater/files/patch-bsdendian
@@ -0,0 +1,66 @@
+--- plex/Third-Party/hash-library/crc32.cpp.orig 2015-04-09 11:13:01 UTC
++++ plex/Third-Party/hash-library/crc32.cpp
+@@ -8,7 +8,7 @@
+
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/keccak.cpp.orig 2015-04-09 11:33:51 UTC
++++ plex/Third-Party/hash-library/keccak.cpp
+@@ -8,7 +8,7 @@
+
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/md5.cpp.orig 2015-04-09 11:33:58 UTC
++++ plex/Third-Party/hash-library/md5.cpp
+@@ -7,7 +7,7 @@
+ #include "md5.h"
+
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha1.cpp.orig 2015-04-09 11:34:06 UTC
++++ plex/Third-Party/hash-library/sha1.cpp
+@@ -8,7 +8,7 @@
+
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha256.cpp.orig 2015-04-09 11:34:13 UTC
++++ plex/Third-Party/hash-library/sha256.cpp
+@@ -8,7 +8,7 @@
+
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>
+--- plex/Third-Party/hash-library/sha3.cpp.orig 2015-04-09 11:34:21 UTC
++++ plex/Third-Party/hash-library/sha3.cpp
+@@ -8,7 +8,7 @@
+
+ // big endian architectures need #define __BYTE_ORDER __BIG_ENDIAN
+ #ifndef _MSC_VER
+-#ifdef __APPLE__
++#if defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
+ #include <machine/endian.h>
+ #else
+ #include <endian.h>