Commit 2f3c4656 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

neon: add optional ssl support

parent 14aa5ee5
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3,8 +3,9 @@
	New packages: libcdaudio, libdvdnav, libdvdread, hostapd, tcpreplay

	Updated/fixed packages: autoconf, bind, binutils, busybox,
	directfb, gst-plugins-bad, hal, iw, libfuse, libpcap, lighttpd,
	mesa, mpg123, mtd-utils, pcre, qt, sshfs, tremor, u-boot, usbutils
	directfb, gst-plugins-bad, hal, iw, libfuse, libpcap,
	lighttpd, mesa, mpg123, mtd-utils, neon, pcre, qt, sshfs,
	tremor, u-boot, usbutils

	Issues resolved (http://bugs.uclibc.org):

+6 −0
Original line number Diff line number Diff line
@@ -12,6 +12,12 @@ config BR2_PACKAGE_NEON_ZLIB
	help
	  build with ZLIB support

config BR2_PACKAGE_NEON_SSL
	bool "SSL support"
	select BR2_PACKAGE_OPENSSL
	help
	  build with SSL support

choice
	prompt "XML Support"
	default BR2_PACKAGE_NEON_NOXML
+6 −0
Original line number Diff line number Diff line
@@ -22,6 +22,12 @@ NEON_DEPENDENCIES+=zlib
else
NEON_CONF_OPT+=--without-zlib
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)
NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la
NEON_CONF_OPT+=--with-libxml2=no