mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
neon: add optional ssl support
Signed-off-by: Nigel Kukard <nkukard@lbsd.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
14aa5ee54f
commit
2f3c46561e
5
CHANGES
5
CHANGES
@ -3,8 +3,9 @@
|
|||||||
New packages: libcdaudio, libdvdnav, libdvdread, hostapd, tcpreplay
|
New packages: libcdaudio, libdvdnav, libdvdread, hostapd, tcpreplay
|
||||||
|
|
||||||
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
Updated/fixed packages: autoconf, bind, binutils, busybox,
|
||||||
directfb, gst-plugins-bad, hal, iw, libfuse, libpcap, lighttpd,
|
directfb, gst-plugins-bad, hal, iw, libfuse, libpcap,
|
||||||
mesa, mpg123, mtd-utils, pcre, qt, sshfs, tremor, u-boot, usbutils
|
lighttpd, mesa, mpg123, mtd-utils, neon, pcre, qt, sshfs,
|
||||||
|
tremor, u-boot, usbutils
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
@ -12,6 +12,12 @@ config BR2_PACKAGE_NEON_ZLIB
|
|||||||
help
|
help
|
||||||
build with ZLIB support
|
build with ZLIB support
|
||||||
|
|
||||||
|
config BR2_PACKAGE_NEON_SSL
|
||||||
|
bool "SSL support"
|
||||||
|
select BR2_PACKAGE_OPENSSL
|
||||||
|
help
|
||||||
|
build with SSL support
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "XML Support"
|
prompt "XML Support"
|
||||||
default BR2_PACKAGE_NEON_NOXML
|
default BR2_PACKAGE_NEON_NOXML
|
||||||
|
@ -22,6 +22,12 @@ NEON_DEPENDENCIES+=zlib
|
|||||||
else
|
else
|
||||||
NEON_CONF_OPT+=--without-zlib
|
NEON_CONF_OPT+=--without-zlib
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(BR2_PACKAGE_NEON_SSL),y)
|
||||||
|
NEON_CONF_OPT+=--with-ssl
|
||||||
|
NEON_DEPENDENCIES+=openssl
|
||||||
|
else
|
||||||
|
NEON_CONF_OPT+=--without-ssl
|
||||||
|
endif
|
||||||
ifeq ($(BR2_PACKAGE_NEON_EXPAT),y)
|
ifeq ($(BR2_PACKAGE_NEON_EXPAT),y)
|
||||||
NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la
|
NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la
|
||||||
NEON_CONF_OPT+=--with-libxml2=no
|
NEON_CONF_OPT+=--with-libxml2=no
|
||||||
|
Loading…
x
Reference in New Issue
Block a user