diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-03-11 10:53:05 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-03-11 10:53:05 +0000 |
commit | e73fd4096e9118ce80c0f868f510f2d79b7d22af (patch) | |
tree | d340b836f1efa351438cbf0b4780ed8ca756b764 /multimedia/avidemux | |
parent | e384e46e4bedece413d9431a4306c2278c3d39df (diff) | |
download | pkgsrc-e73fd4096e9118ce80c0f868f510f2d79b7d22af.tar.gz |
Fix build when not using MMX. Found by latest kristerw@'s bulk build.
Diffstat (limited to 'multimedia/avidemux')
-rw-r--r-- | multimedia/avidemux/distinfo | 3 | ||||
-rw-r--r-- | multimedia/avidemux/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/multimedia/avidemux/distinfo b/multimedia/avidemux/distinfo index 07912b8fc3b..1b8b9eaa0e8 100644 --- a/multimedia/avidemux/distinfo +++ b/multimedia/avidemux/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/01/26 12:59:01 jmmv Exp $ +$NetBSD: distinfo,v 1.2 2004/03/11 10:53:05 jmmv Exp $ SHA1 (avidemux-2.0.18.tar.gz) = ce3b6de5bdcade98ea564ec496de4eb370cd5740 Size (avidemux-2.0.18.tar.gz) = 2518712 bytes SHA1 (patch-aa) = 441462c537aa8a2205b6c1d9ab160afc34b5c967 +SHA1 (patch-ab) = cb3aa64dfe3d48bca554e5f8bd857152cdfd309c diff --git a/multimedia/avidemux/patches/patch-ab b/multimedia/avidemux/patches/patch-ab new file mode 100644 index 00000000000..39725a2b780 --- /dev/null +++ b/multimedia/avidemux/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2004/03/11 10:53:05 jmmv Exp $ + +--- adm_lavcodec/dsputil.h.orig 2003-09-16 19:52:00.000000000 +0200 ++++ adm_lavcodec/dsputil.h +@@ -477,7 +477,7 @@ static int name16(void /*MpegEncContext* + +name8(s, dst+8+8*stride, src+8+8*stride, stride);\ + } + +-#ifndef HAVE_LRINTF ++#if defined(USE_MMX) && !defined(HAVE_LRINTF) + /* XXX: add ISOC specific test to avoid specific BSD testing. */ + /* better than nothing implementation. */ + /* btw, rintf() is existing on fbsd too -- alex */ |