From a61af1bc34a04826636a85e77a779fc6cd417434 Mon Sep 17 00:00:00 2001
From: Travis Paul
Date: Thu, 13 Feb 2020 13:43:38 +0800
Subject: [PATCH] Fix configure failure on NetBSD
$host_os is "netbsd" (all lowercase) according to config.log
---
config.m4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.m4 b/config.m4
index 999f92c..1318a11 100644
--- a/config.m4
+++ b/config.m4
@@ -1,7 +1,7 @@
dnl config.m4 for extension gnupg
AC_CANONICAL_HOST
case $host_os in
- *BSD*)
+ *BSD* | *bsd)
GNUPG_DL=""
;;
*)