diff options
author | nobutaka <nobutaka@FreeBSD.org> | 2003-07-08 14:18:35 +0000 |
---|---|---|
committer | nobutaka <nobutaka@FreeBSD.org> | 2003-07-08 14:18:35 +0000 |
commit | a07bf9e282dcf7800a80ce01cca4d775cfb9971e (patch) | |
tree | bc28a7d7be76aa7cad67339162f5bd4f13db8fc4 /multimedia/libxine | |
parent | d12eec977d7bdaadc7d1a1fa864fd2b1251f9ac5 (diff) | |
download | FreeBSD-ports-a07bf9e282dcf7800a80ce01cca4d775cfb9971e.zip FreeBSD-ports-a07bf9e282dcf7800a80ce01cca4d775cfb9971e.tar.gz |
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/libxine')
-rw-r--r-- | multimedia/libxine/files/patch-src:input:libdvdnav:bswap.h | 11 |
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 0000000..65a5e12 --- /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) |