diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-12-12 23:26:37 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-12-12 23:26:37 +0000 |
commit | ddb8318f789741610b0ba319a367bbb4d724065c (patch) | |
tree | e7c835f9e4e1015c9914e4c50b2b43f94b1cbf94 /multimedia/mplayer/files/patch-bswap.h | |
parent | Update to 0.2.12 (diff) |
- Update to 1.0rc2
PR: 118231
Submitted by: Thomas Zander <riggs@rrr.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=203409
Diffstat (limited to 'multimedia/mplayer/files/patch-bswap.h')
-rw-r--r-- | multimedia/mplayer/files/patch-bswap.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/multimedia/mplayer/files/patch-bswap.h b/multimedia/mplayer/files/patch-bswap.h deleted file mode 100644 index e3a320a78183..000000000000 --- a/multimedia/mplayer/files/patch-bswap.h +++ /dev/null @@ -1,20 +0,0 @@ ---- bswap.h.orig Sun Jun 11 20:35:47 2006 -+++ bswap.h Thu Jun 15 10:31:42 2006 -@@ -1,8 +1,17 @@ - #ifndef __BSWAP_H__ - #define __BSWAP_H__ - -+#if (defined(__unix__) || defined(unix)) && !defined(USG) -+#include <sys/param.h> -+#endif -+ - #ifdef HAVE_BYTESWAP_H - #include <byteswap.h> -+#elif (defined(__FreeBSD__) && __FreeBSD_version >= 500000) -+#include <sys/endian.h> -+#define bswap_16(x) bswap16(x) -+#define bswap_32(x) bswap32(x) -+#define bswap_64(x) bswap64(x) - #else - - #include <inttypes.h> |