aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorMANTANI Nobutaka <nobutaka@FreeBSD.org>2003-07-08 22:18:35 +0800
committerMANTANI Nobutaka <nobutaka@FreeBSD.org>2003-07-08 22:18:35 +0800
commit83977370eb9968017cc88465f97716f253b00712 (patch)
tree2adc0afc7a5551e03997d4939221d8088571bb67 /multimedia
parentd2a55ced966a6e691780bb3ad932a5a700280b13 (diff)
downloadfreebsd-ports-gnome-83977370eb9968017cc88465f97716f253b00712.tar.gz
freebsd-ports-gnome-83977370eb9968017cc88465f97716f253b00712.tar.zst
freebsd-ports-gnome-83977370eb9968017cc88465f97716f253b00712.zip
Fix undefined reference under -stable.
PR: 53679 Submitted by: Frank Altpeter <frank@altpeter.de> Pointed out by: Sean McNeil <sean@mcneil.com>
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/libxine/files/patch-src:input:libdvdnav:bswap.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/libxine/files/patch-src:input:libdvdnav:bswap.h b/multimedia/libxine/files/patch-src:input:libdvdnav:bswap.h
new file mode 100644
index 000000000000..65a5e126ff9e
--- /dev/null
+++ b/multimedia/libxine/files/patch-src:input:libdvdnav:bswap.h
@@ -0,0 +1,11 @@
+--- src/input/libdvdnav/bswap.h.orig Wed Apr 30 06:55:46 2003
++++ src/input/libdvdnav/bswap.h Tue Jul 8 22:28:49 2003
+@@ -53,7 +53,7 @@
+ #define B2N_32(x) x = swap32(x)
+ #define B2N_64(x) x = swap64(x)
+
+-#elif defined(__FreeBSD__) && __FreeBSD_version >= 470000
++#elif defined(__FreeBSD__) && __FreeBSD_version >= 500034
+ #include <sys/endian.h>
+ #define B2N_16(x) x = be16toh(x)
+ #define B2N_32(x) x = be32toh(x)