All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/gdal: add openssl optional dependency
@ 2024-02-25  9:24 Fabrice Fontaine
  2024-04-07 14:49 ` Arnout Vandecappelle via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Fabrice Fontaine @ 2024-02-25  9:24 UTC (permalink / raw
  To: buildroot; +Cc: Dominik Michael Rauh, Fabrice Fontaine

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gdal/gdal.mk | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/package/gdal/gdal.mk b/package/gdal/gdal.mk
index 247e13663c..77ffb514c2 100644
--- a/package/gdal/gdal.mk
+++ b/package/gdal/gdal.mk
@@ -46,7 +46,6 @@ GDAL_CONF_OPTS = \
 	-DGDAL_USE_BLOSC=OFF \
 	-DGDAL_USE_BRUNSLI=OFF \
 	-DGDAL_USE_CFITSIO=OFF \
-	-DGDAL_USE_OPENSSL=OFF \
 	-DGDAL_USE_CRYPTOPP=OFF \
 	-DGDAL_USE_CRNLIB=OFF \
 	-DGDAL_USE_ECW=OFF \
@@ -130,6 +129,13 @@ else
 GDAL_CONF_OPTS += -DENABLE_DEFLATE64=OFF
 endif
 
+ifeq ($(BR2_PACKAGE_OPENSSL),y)
+GDAL_DEPENDENCIES += openssl
+GDAL_CONF_OPTS += -DGDAL_USE_OPENSSL=ON
+else
+GDAL_CONF_OPTS += -DGDAL_USE_OPENSSL=OFF
+endif
+
 ifeq ($(BR2_PACKAGE_POSTGRESQL),y)
 GDAL_DEPENDENCIES += postgresql
 GDAL_CONF_OPTS += -DGDAL_USE_POSTGRESQL=ON
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-02 11:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-25  9:24 [Buildroot] [PATCH 1/1] package/gdal: add openssl optional dependency Fabrice Fontaine
2024-04-07 14:49 ` Arnout Vandecappelle via buildroot
2024-05-02 11:16   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.