diff options
-rw-r--r-- | net/gnome-online-accounts/patches/patch-configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/gnome-online-accounts/patches/patch-configure b/net/gnome-online-accounts/patches/patch-configure new file mode 100644 index 00000000000..7ca62dba6af --- /dev/null +++ b/net/gnome-online-accounts/patches/patch-configure @@ -0,0 +1,24 @@ +$NetBSD: patch-configure,v 1.1 2018/05/31 14:45:56 youri Exp $ + +Portability fix. + +--- configure.orig 2018-04-17 15:48:19.000000000 +0000 ++++ configure +@@ -16773,14 +16773,14 @@ fi + + + if test "$enable_kerberos" != "no"; then +- if test "$enable_kerberos" == "yes" && +- test "$have_kerberos" == "no" ; then ++ if test "$enable_kerberos" = "yes" && ++ test "$have_kerberos" = "no" ; then + as_fn_error $? "kerberos support requested, but not available" "$LINENO" 5 + fi + + enable_kerberos=$have_kerberos + +- if test "$enable_kerberos" == "yes"; then ++ if test "$enable_kerberos" = "yes"; then + + $as_echo "#define GCR_API_SUBJECT_TO_CHANGE 1" >>confdefs.h + |