diff options
author | tron <tron@pkgsrc.org> | 2006-10-03 14:32:24 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-10-03 14:32:24 +0000 |
commit | b09bca1c753ae17cc25a363f5615095bd18c20f6 (patch) | |
tree | 3850a8fcd2866e1eb878c0d3ffa71e9b57f9109b /multimedia/mplayer-share | |
parent | 2f2acfdf848f2ab5841a93ed624daa11f8dd88ca (diff) | |
download | pkgsrc-b09bca1c753ae17cc25a363f5615095bd18c20f6.tar.gz |
Fix a few broken "test ... ==" checks in the configure script found
by "check-portability.mk".
Diffstat (limited to 'multimedia/mplayer-share')
-rw-r--r-- | multimedia/mplayer-share/distinfo | 4 | ||||
-rw-r--r-- | multimedia/mplayer-share/patches/patch-aa | 33 |
2 files changed, 32 insertions, 5 deletions
diff --git a/multimedia/mplayer-share/distinfo b/multimedia/mplayer-share/distinfo index f00134e1cbb..7cdf74ccb09 100644 --- a/multimedia/mplayer-share/distinfo +++ b/multimedia/mplayer-share/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.31 2006/08/04 21:01:21 wiz Exp $ +$NetBSD: distinfo,v 1.32 2006/10/03 14:32:24 tron Exp $ SHA1 (mplayer-1.0rc8/MPlayer-1.0pre8.tar.bz2) = 8a0929b84dcb37d47c062230ce693b64b3e30921 RMD160 (mplayer-1.0rc8/MPlayer-1.0pre8.tar.bz2) = 23fd13fe75a5c4029ead043aa4b3b08fe5fe44f0 Size (mplayer-1.0rc8/MPlayer-1.0pre8.tar.bz2) = 8166628 bytes -SHA1 (patch-aa) = 8792bc990acf1164650e07c4981bda077f2b0aff +SHA1 (patch-aa) = 9963d959da515d318fe794104acaa4b6ac504643 SHA1 (patch-ab) = 29bf59ecb3d283708ae1c5002d1fa71cac627cc9 SHA1 (patch-ac) = 6d0de4bd41d9842ea1bf46e9fbe60bf6a943b913 SHA1 (patch-ad) = 4744bdb2ea6ffa1a18abaef5a9cf5756f3b8a645 diff --git a/multimedia/mplayer-share/patches/patch-aa b/multimedia/mplayer-share/patches/patch-aa index d757b2a89d9..94d2a2c3f05 100644 --- a/multimedia/mplayer-share/patches/patch-aa +++ b/multimedia/mplayer-share/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.15 2006/08/04 21:01:21 wiz Exp $ +$NetBSD: patch-aa,v 1.16 2006/10/03 14:32:24 tron Exp $ ---- configure.orig 2006-06-11 18:35:47.000000000 +0000 -+++ configure 2006-07-08 11:17:13.000000000 +0000 +--- configure.orig 2006-06-11 19:35:47.000000000 +0100 ++++ configure 2006-10-03 14:25:36.000000000 +0100 @@ -493,7 +493,7 @@ _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` ;; @@ -52,3 +52,30 @@ $NetBSD: patch-aa,v 1.15 2006/08/04 21:01:21 wiz Exp $ fi _vosrc="$_vosrc vo_aa.c" _vomodules="aa $_vomodules" +@@ -6190,7 +6190,7 @@ + elif cc_check -lavutil $_ld_lm ; then + _libavutil_so=yes + fi +- if test "$_libavutil_so" == yes ; then ++ if test "$_libavutil_so" = yes ; then + _res_comment="using libavutil.so, but static libavutil is recommended" + fi + fi +@@ -6217,7 +6217,7 @@ + elif cc_check -lavcodec $_ld_lm ; then + _libavcodec_so=yes + fi +- if test "$_libavcodec_so" == yes ; then ++ if test "$_libavcodec_so" = yes ; then + _res_comment="using libavcodec.so, but static libavcodec is recommended" + fi + fi +@@ -6239,7 +6239,7 @@ + elif cc_check $_ld_lm -lavformat ; then + _libavformat_so=yes + fi +- if test "$_libavformat_so" == yes ; then ++ if test "$_libavformat_so" = yes ; then + _res_comment="using libavformat.so, but static libavformat is recommended" + fi + fi |