$NetBSD: patch-configure,v 1.1.1.1 2012/04/20 14:50:11 roelants Exp $
Replace non-portable test operator "==".
--- configure.orig	2012-03-24 10:23:14.000000000 +0000
+++ configure
@@ -23113,7 +23113,7 @@ _ACEOF
     PORTABLE=yes
 
 
-    if test "x$enable_portable" == "xfull" ; then
+    if test "x$enable_portable" = "xfull" ; then
 
 cat >>confdefs.h <<_ACEOF
 #define PORTABLE_FULL 1
@@ -23214,7 +23214,7 @@ fi
 fi
 
 
-if test "x$enable_gtk3" == "xyes" ; then
+if test "x$enable_gtk3" = "xyes" ; then
 
 pkg_failed=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK3_DEPS" >&5
@@ -23290,7 +23290,7 @@ else
     HAVE_GTK3=no
 fi
 
-if test "x$enable_gtk2" == "xyes" ; then
+if test "x$enable_gtk2" = "xyes" ; then
 
 pkg_failed=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK2_DEPS" >&5
@@ -24178,7 +24178,7 @@ fi
 fi
 
 if test "x$enable_gtkui" != "xno" ; then
-    if test "x$HAVE_GTK2" == "xyes" || test "x$HAVE_GTK3" == "xyes" ; then
+    if test "x$HAVE_GTK2" = "xyes" || test "x$HAVE_GTK3" = "xyes" ; then
         HAVE_GTKUI=yes
     fi
 fi
@@ -24375,7 +24375,7 @@ $as_echo "yes" >&6; }
 fi
         fi
 
-        if test "x$enable_artwork_imlib2" == "xno" || test "x$HAVE_IMLIB2" == "xno" ; then
+        if test "x$enable_artwork_imlib2" = "xno" || test "x$HAVE_IMLIB2" = "xno" ; then
             { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -ljpeg" >&5
 $as_echo_n "checking for main in -ljpeg... " >&6; }
 if ${ac_cv_lib_jpeg_main+:} false; then :
@@ -24447,7 +24447,7 @@ fi
         fi
     fi
 
-    if test "x$HAVE_VFS_CURL" = "xyes" && ( test "x$HAVE_JPEG" == "xyes" || test "x$HAVE_IMLIB2" == "xyes" ) ; then
+    if test "x$HAVE_VFS_CURL" = "xyes" && ( test "x$HAVE_JPEG" = "xyes" || test "x$HAVE_IMLIB2" = "xyes" ) ; then
         HAVE_ARTWORK=yes
     fi
 fi
@@ -24456,7 +24456,7 @@ if test "x$enable_adplug" != "xno" ; the
     HAVE_ADPLUG=yes
 fi
 
-if test "x$enable_ffap" != "xno" && ( test "x$HAVE_YASM" == "xyes" || test "x$APE_USE_YASM" != "xyes" ) ; then
+if test "x$enable_ffap" != "xno" && ( test "x$HAVE_YASM" = "xyes" || test "x$APE_USE_YASM" != "xyes" ) ; then
     HAVE_FFAP=yes
 fi
 
