fix openssl dependency resolution on bsd

Sat, 25 Feb 2023 21:12:51 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sat, 25 Feb 2023 21:12:51 +0100
changeset 458
15bf3c1796f2
parent 457
982e67c997e1
child 459
f21b4ff81c01

fix openssl dependency resolution on bsd

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
--- a/configure	Sat Feb 25 11:38:33 2023 +0100
+++ b/configure	Sat Feb 25 21:12:51 2023 +0100
@@ -283,6 +283,14 @@
         return 0
     done
 	
+    # dependency openssl 
+    while true
+    do
+        LDFLAGS="$LDFLAGS -lssl -lcrypto"    
+		echo yes
+        return 0
+    done
+	
 	echo no
 	return 1
 }
--- a/make/project.xml	Sat Feb 25 11:38:33 2023 +0100
+++ b/make/project.xml	Sat Feb 25 21:12:51 2023 +0100
@@ -89,11 +89,9 @@
 		<pkgconfig>openssl</pkgconfig>
 	</dependency>
 	
-	<!--
 	<dependency name="openssl">
 		<ldflags>-lssl -lcrypto</ldflags>
 	</dependency>
-	-->
 
 	<!-- optional dependencies -->
 	<dependency name="libpq">

mercurial