mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/octave: add optional openssl support
GNU Octave supports the --with-openssl configure option since v4.0.0.
For reference, commit 40ea68b4b2 "package/octave: new package"
introduced the package at v7.1.0.
This commits adds this optional support.
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
935a5ad4eb
commit
0e2c2810dc
@@ -43,6 +43,13 @@ else
|
||||
OCTAVE_CONF_OPTS += --without-curl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
OCTAVE_CONF_OPTS += --with-openssl=yes
|
||||
OCTAVE_DEPENDENCIES += openssl
|
||||
else
|
||||
OCTAVE_CONF_OPTS += --without-openssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_READLINE),y)
|
||||
OCTAVE_CONF_OPTS += \
|
||||
--enable-readline \
|
||||
|
||||
Reference in New Issue
Block a user