diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2008-10-25 12:13:51 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2008-10-25 12:13:51 +0000 |
commit | ceb4251265d9725ad18feb1c10b94fc70e21c07d (patch) | |
tree | 67ce613425d23631917d883d105f118dd94f27f2 /multimedia | |
parent | 75711885925a068032942acfae3ed9faac6a23fa (diff) | |
download | ports-ceb4251265d9725ad18feb1c10b94fc70e21c07d.tar.gz ports-ceb4251265d9725ad18feb1c10b94fc70e21c07d.zip |
Notes
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libxine/Makefile | 1 | ||||
-rw-r--r-- | multimedia/libxine/files/patch-src__xine-engine__buffer.h | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile index 6dc71d86023e..31fd829e10c3 100644 --- a/multimedia/libxine/Makefile +++ b/multimedia/libxine/Makefile @@ -7,6 +7,7 @@ PORTNAME= xine PORTVERSION= 1.1.15 +PORTREVISION= 1 CATEGORIES= multimedia ipv6 MASTER_SITES= SF PKGNAMEPREFIX= lib diff --git a/multimedia/libxine/files/patch-src__xine-engine__buffer.h b/multimedia/libxine/files/patch-src__xine-engine__buffer.h new file mode 100644 index 000000000000..3a416dbcc650 --- /dev/null +++ b/multimedia/libxine/files/patch-src__xine-engine__buffer.h @@ -0,0 +1,11 @@ +--- src/xine-engine/buffer.h.orig 2008-07-16 17:01:56.000000000 -0400 ++++ src/xine-engine/buffer.h 2008-10-23 14:25:45.000000000 -0400 +@@ -676,7 +676,7 @@ + /* convert xine_waveformatex struct from little endian */ + void _x_waveformatex_le2me( xine_waveformatex *wavex ) XINE_PROTECTED; + +-static inline _x_is_fourcc(void *ptr, void *tag) { ++static inline int _x_is_fourcc(void *ptr, void *tag) { + return memcmp(ptr, tag, 4) == 0; + } + |