Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4
@ 2012-06-11 20:40 Gustavo Zacarias
  2012-06-11 20:40 ` [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4 Gustavo Zacarias
  2012-06-12 20:27 ` [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2012-06-11 20:40 UTC (permalink / raw)
  To: buildroot

* Correctly handle empty SSL/TLS packets (Found by James Yonan)
* Fixed potential heap corruption in x509_name allocation
* Fixed single RSA test that failed on Big Endian systems

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/polarssl/polarssl.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/polarssl/polarssl.mk b/package/polarssl/polarssl.mk
index d07cdc6..e12f08d 100644
--- a/package/polarssl/polarssl.mk
+++ b/package/polarssl/polarssl.mk
@@ -1,5 +1,5 @@
 POLARSSL_SITE = http://polarssl.org/code/releases/
-POLARSSL_VERSION = 1.1.3
+POLARSSL_VERSION = 1.1.4
 POLARSSL_SOURCE = polarssl-$(POLARSSL_VERSION)-gpl.tgz
 POLARSSL_CONF_OPT = \
 	-DUSE_SHARED_POLARSSL_LIBRARY=ON \
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4
  2012-06-11 20:40 [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Gustavo Zacarias
@ 2012-06-11 20:40 ` Gustavo Zacarias
  2012-06-16 20:16   ` Peter Korsgaard
  2012-06-12 20:27 ` [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Gustavo Zacarias @ 2012-06-11 20:40 UTC (permalink / raw)
  To: buildroot

Fix bug #5276 by disabling IPv6 when the toolchain lacks it.
It builds fine even if it's enabled but it probably doesn't work fine.

Also bump to version 8.4:
* MaxServerLoad option added.
* Bugfix: invalid reverse proxy request when URL parameters are present.
* PolarSSL updated to version 1.1.4.
* Small bugfixes and improvements.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/hiawatha/hiawatha.mk |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/package/hiawatha/hiawatha.mk b/package/hiawatha/hiawatha.mk
index 647c1e1..941ee8d 100644
--- a/package/hiawatha/hiawatha.mk
+++ b/package/hiawatha/hiawatha.mk
@@ -1,4 +1,4 @@
-HIAWATHA_VERSION = 8.3
+HIAWATHA_VERSION = 8.4
 HIAWATHA_SITE = http://www.hiawatha-webserver.org/files/
 
 ifeq ($(BR2_PACKAGE_HIAWATHA_SSL),y)
@@ -7,6 +7,7 @@ HIAWATHA_DEPENDENCIES += polarssl
 endif
 
 HIAWATHA_CONF_OPT += \
+	$(if $(BR2_INET_IPV6),,-DENABLE_IPV6=OFF) \
 	-DENABLE_TOOLKIT=OFF \
 	-DENABLE_XSLT=OFF \
 	-DCONFIG_DIR=/etc/hiawatha \
-- 
1.7.3.4

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

* [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4
  2012-06-11 20:40 [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Gustavo Zacarias
  2012-06-11 20:40 ` [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4 Gustavo Zacarias
@ 2012-06-12 20:27 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-06-12 20:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> * Correctly handle empty SSL/TLS packets (Found by James Yonan)
 Gustavo> * Fixed potential heap corruption in x509_name allocation
 Gustavo> * Fixed single RSA test that failed on Big Endian systems

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4
  2012-06-11 20:40 ` [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4 Gustavo Zacarias
@ 2012-06-16 20:16   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-06-16 20:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Fix bug #5276 by disabling IPv6 when the toolchain lacks it.
 Gustavo> It builds fine even if it's enabled but it probably doesn't work fine.

 Gustavo> Also bump to version 8.4:
 Gustavo> * MaxServerLoad option added.
 Gustavo> * Bugfix: invalid reverse proxy request when URL parameters are present.
 Gustavo> * PolarSSL updated to version 1.1.4.
 Gustavo> * Small bugfixes and improvements.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-06-16 20:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-11 20:40 [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Gustavo Zacarias
2012-06-11 20:40 ` [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4 Gustavo Zacarias
2012-06-16 20:16   ` Peter Korsgaard
2012-06-12 20:27 ` [Buildroot] [PATCH 1/2] polarssl: bump to version 1.1.4 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox