$NetBSD: patch-configure,v 1.2 2021/04/22 12:03:39 adam Exp $

Fix == in configure script.

--- configure.orig	2020-11-01 13:53:55.000000000 +0000
+++ configure
@@ -20654,7 +20654,7 @@ else
   HAVE_CXX11_FALSE=
 fi
 
- if test "x$with_int" == "ximath-32"; then
+ if test "x$with_int" = "ximath-32"; then
   SMALL_INT_OPT_TRUE=
   SMALL_INT_OPT_FALSE='#'
 else
@@ -20662,7 +20662,7 @@ else
   SMALL_INT_OPT_FALSE=
 fi
 
-if test "x$with_int" == "ximath-32"; then :
+if test "x$with_int" = "ximath-32"; then :
 
 
 $as_echo "#define USE_SMALL_INT_OPT /**/" >>confdefs.h
