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:
Peter Korsgaard 2009-12-20 23:49:45 +01:00
parent 14aa5ee54f
commit 2f3c46561e
3 changed files with 15 additions and 2 deletions

View File

@ -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):

View File

@ -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

View File

@ -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