diff options
Diffstat (limited to '')
-rw-r--r-- | multimedia/totem/files/patch-configure | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/multimedia/totem/files/patch-configure b/multimedia/totem/files/patch-configure new file mode 100644 index 000000000000..1fab81f6ed98 --- /dev/null +++ b/multimedia/totem/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig Fri May 25 00:24:10 2007 ++++ configure Fri May 25 00:24:23 2007 +@@ -22960,7 +22960,7 @@ GTK_LIBS="$GTK_LIBS $EXTRA_BACKEND_LIBS" + + plugin_error_or_ignore() + { +- if test "${error_on_bad_plugin}" == "1" ; then ++ if test "${error_on_bad_plugin}" = "1" ; then + { { echo "$as_me:$LINENO: error: $1" >&5 + echo "$as_me: error: $1" >&2;} + { (exit 1); exit 1; }; } +@@ -22982,7 +22982,7 @@ fi + used_plugins="" + used_plugins2="" + +-if test "x${with_plugins}" == "xautodetect" ; then ++if test "x${with_plugins}" = "xautodetect" ; then + # Default to all plugins and just ignore them if they won't compile + with_plugins="all" + error_on_bad_plugin="0" +@@ -23384,7 +23384,7 @@ fi + esac + + # Add the specified plugin +- if test "${add_plugin}" == "1" ; then ++ if test "${add_plugin}" = "1" ; then + used_plugins2="${used_plugins2} ${plugin}" + fi + done |