diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2012-01-17 14:35:18 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2012-01-17 14:35:18 +0000 |
commit | a6a77bf4294bdcf786389dc6e51e5509d7094265 (patch) | |
tree | 356b0ef2ccd7c23e99ab52fd69755ad976e9eb1c /multimedia/libdvdread/files/patch-src.md5.c | |
parent | Update third-party modules: (diff) |
- Update libdvdread and libdvdnav to 4.2.0 and bump dependent ports' revisions
- libdvdread: allow package building with libdvdcss if WITH_DVDCSS is set [1]
- libdvdread/libdvdnav: fix endianness handling [2]
Submitted by: olgeni [1], richo <richo@psych0tik.net> [2] (via mail to ports@)
PR: ports/162197 [1]
Notes
Notes:
svn path=/head/; revision=289371
Diffstat (limited to 'multimedia/libdvdread/files/patch-src.md5.c')
-rw-r--r-- | multimedia/libdvdread/files/patch-src.md5.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multimedia/libdvdread/files/patch-src.md5.c b/multimedia/libdvdread/files/patch-src.md5.c new file mode 100644 index 000000000000..c150b237f2b2 --- /dev/null +++ b/multimedia/libdvdread/files/patch-src.md5.c @@ -0,0 +1,16 @@ +--- src/md5.c.orig 2011-12-09 11:27:02.423821748 +0100 ++++ src/md5.c 2011-12-09 11:29:07.409821303 +0100 +@@ -28,12 +28,7 @@ + #include "md5.h" + /* #include "unlocked-io.h" */ + +-#ifdef _LIBC +-# include <endian.h> +-# if __BYTE_ORDER == __BIG_ENDIAN +-# define WORDS_BIGENDIAN 1 +-# endif +-#endif ++#include "config.h" + + #ifdef WORDS_BIGENDIAN + # define SWAP(n) \ |