diff -r 87fea7ab27de -r 971ac4f0f1df test/configure
--- a/test/configure	Sun Jun 07 14:42:06 2020 +0200
+++ b/test/configure	Sat Oct 24 17:36:00 2020 +0200
@@ -291,6 +291,17 @@
         return 0
     done
 	
+    # dependency openssl platform="bsd"
+    while true
+    do
+    	if isnotplatform "bsd"; then
+            break
+        fi
+        LDFLAGS="$LDFLAGS -lssl -lcrypto"    
+		echo yes
+        return 0
+    done
+	
 	echo no
 	return 1
 }
@@ -401,7 +412,7 @@
 if [ $ERROR -ne 0 ]; then
 	echo
 	echo "Error: Unresolved dependencies"
-	echo $DEPENCIES_FAILED
+	echo $DEPENDENCIES_FAILED
 	rm -Rf $TEMP_DIR
 	exit 1
 fi