summaryrefslogtreecommitdiff
path: root/multimedia/mplayer-share/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2006-10-03 14:32:24 +0000
committertron <tron@pkgsrc.org>2006-10-03 14:32:24 +0000
commitb09bca1c753ae17cc25a363f5615095bd18c20f6 (patch)
tree3850a8fcd2866e1eb878c0d3ffa71e9b57f9109b /multimedia/mplayer-share/patches
parent2f2acfdf848f2ab5841a93ed624daa11f8dd88ca (diff)
downloadpkgsrc-b09bca1c753ae17cc25a363f5615095bd18c20f6.tar.gz
Fix a few broken "test ... ==" checks in the configure script found
by "check-portability.mk".
Diffstat (limited to 'multimedia/mplayer-share/patches')
-rw-r--r--multimedia/mplayer-share/patches/patch-aa33
1 files changed, 30 insertions, 3 deletions
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