diff options
author | youri <youri@pkgsrc.org> | 2018-05-31 14:45:56 +0000 |
---|---|---|
committer | youri <youri@pkgsrc.org> | 2018-05-31 14:45:56 +0000 |
commit | 54126611b4e92c37649cbb7d098e4722a6caf2b3 (patch) | |
tree | 25c0bd3092b89c0842bdaf4b1c00132693d2c22c /net | |
parent | d5ce4cadb45375f145ec7ded64b2f5823a63451a (diff) | |
download | pkgsrc-54126611b4e92c37649cbb7d098e4722a6caf2b3.tar.gz |
Add patch.
Diffstat (limited to 'net')
-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 + |