summaryrefslogtreecommitdiff
path: root/multimedia/vic/files
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2007-03-26 05:48:58 +0000
committerMikhail Teterin <mi@FreeBSD.org>2007-03-26 05:48:58 +0000
commit59bdf3ddbdd8e60be09b63773b995a2bd8a7415e (patch)
treef07f460fa0ac83e8c9689834c4aac72598f30a7a /multimedia/vic/files
parent- install man pages (diff)
Add a patch to fix a harmless warning, which breaks this port under
the stricter g++42 (and 41): Prodded by: kris While here switch to USE_TK and make -with-ipv6 conditional on the NO_INET6 being undefined.
Notes
Notes: svn path=/head/; revision=188361
Diffstat (limited to 'multimedia/vic/files')
-rw-r--r--multimedia/vic/files/patch-warns9
1 files changed, 9 insertions, 0 deletions
diff --git a/multimedia/vic/files/patch-warns b/multimedia/vic/files/patch-warns
new file mode 100644
index 000000000000..8db7f714fc0a
--- /dev/null
+++ b/multimedia/vic/files/patch-warns
@@ -0,0 +1,9 @@
+--- codec/p64/p64.cpp Thu Sep 9 08:46:10 1999
++++ codec/p64/p64.cpp Mon Mar 26 01:44:44 2007
+@@ -1069,5 +1069,5 @@
+ * with 8 bits; otherwise, prime it with a 16.
+ */
+- if ((int)bp & 1) {
++ if ((intptr_t)bp & 1) {
+ bs_ = (u_short*)(bp + 1);
+ bb_ = *bp;