Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/5] less: bump to version 443
@ 2011-04-18 14:09 Gustavo Zacarias
  2011-04-18 14:09 ` [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7 Gustavo Zacarias
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2011-04-18 14:09 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/less/less.mk b/package/less/less.mk
index 6f985ed..2379c8f 100644
--- a/package/less/less.mk
+++ b/package/less/less.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-LESS_VERSION = 436
+LESS_VERSION = 443
 LESS_SITE = http://www.greenwoodsoftware.com/less
 LESS_DEPENDENCIES = ncurses
 
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7
  2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
@ 2011-04-18 14:09 ` Gustavo Zacarias
  2011-04-21 21:35   ` Peter Korsgaard
  2011-04-18 14:09 ` [Buildroot] [PATCH 3/5] toolchain: bump kernel headers 2.6.35.12 and 2.6.38.3 Gustavo Zacarias
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-04-18 14:09 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/libpng/libpng.mk b/package/libpng/libpng.mk
index e64989d..657ba45 100644
--- a/package/libpng/libpng.mk
+++ b/package/libpng/libpng.mk
@@ -3,7 +3,7 @@
 # libpng (Portable Network Graphic library)
 #
 #############################################################
-LIBPNG_VERSION = 1.4.5
+LIBPNG_VERSION = 1.4.7
 LIBPNG_SERIES = 14
 LIBPNG_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/libpng
 LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.bz2
-- 
1.7.3.4

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

* [Buildroot] [PATCH 3/5] toolchain: bump kernel headers 2.6.35.12 and 2.6.38.3
  2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
  2011-04-18 14:09 ` [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7 Gustavo Zacarias
@ 2011-04-18 14:09 ` Gustavo Zacarias
  2011-04-18 14:09 ` [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3 Gustavo Zacarias
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2011-04-18 14:09 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 toolchain/kernel-headers/Config.in                 |    4 ++--
 ...types-for-headers-exported-to-user-space.patch} |    0
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename toolchain/kernel-headers/{linux-2.6.35.11-scsi-use-__uX-types-for-headers-exported-to-user-space.patch => linux-2.6.35.12-scsi-use-__uX-types-for-headers-exported-to-user-space.patch} (100%)

diff --git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 1da6d53..68151d0 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -43,9 +43,9 @@ config BR2_DEFAULT_KERNEL_VERSION
 
 config BR2_DEFAULT_KERNEL_HEADERS
 	string
-	default "2.6.35.11"	if BR2_KERNEL_HEADERS_2_6_35
+	default "2.6.35.12"	if BR2_KERNEL_HEADERS_2_6_35
 	default "2.6.36.4"	if BR2_KERNEL_HEADERS_2_6_36
 	default "2.6.37.6"	if BR2_KERNEL_HEADERS_2_6_37
-	default "2.6.38.2"	if BR2_KERNEL_HEADERS_2_6_38
+	default "2.6.38.3"	if BR2_KERNEL_HEADERS_2_6_38
 	default "2.6"		if BR2_KERNEL_HEADERS_SNAP
 	default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-2.6.35.11-scsi-use-__uX-types-for-headers-exported-to-user-space.patch b/toolchain/kernel-headers/linux-2.6.35.12-scsi-use-__uX-types-for-headers-exported-to-user-space.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-2.6.35.11-scsi-use-__uX-types-for-headers-exported-to-user-space.patch
rename to toolchain/kernel-headers/linux-2.6.35.12-scsi-use-__uX-types-for-headers-exported-to-user-space.patch
-- 
1.7.3.4

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

* [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3
  2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
  2011-04-18 14:09 ` [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7 Gustavo Zacarias
  2011-04-18 14:09 ` [Buildroot] [PATCH 3/5] toolchain: bump kernel headers 2.6.35.12 and 2.6.38.3 Gustavo Zacarias
@ 2011-04-18 14:09 ` Gustavo Zacarias
  2011-04-21 21:37   ` Peter Korsgaard
  2011-04-18 14:09 ` [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12 Gustavo Zacarias
  2011-04-21 21:33 ` [Buildroot] [PATCH 1/5] less: bump to version 443 Peter Korsgaard
  4 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-04-18 14:09 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 linux/Config.in |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/linux/Config.in b/linux/Config.in
index f7d7f88..d6bb790 100644
--- a/linux/Config.in
+++ b/linux/Config.in
@@ -22,7 +22,7 @@ choice
 	default BR2_LINUX_KERNEL_2_6_38
 
 config BR2_LINUX_KERNEL_2_6_38
-	bool "2.6.38"
+	bool "2.6.38.3"
 
 config BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	bool "Same as toolchain kernel headers"
@@ -52,7 +52,7 @@ endchoice
 config BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE
 	string "Kernel version"
 	depends on BR2_LINUX_KERNEL_CUSTOM_VERSION
-	default "2.6.38"
+	default "2.6.38.3"
 
 config BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION
 	string "URL of custom kernel tarball"
@@ -60,7 +60,7 @@ config BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION
 
 config BR2_LINUX_KERNEL_VERSION
 	string
-	default "2.6.38" if BR2_LINUX_KERNEL_2_6_38
+	default "2.6.38.3" if BR2_LINUX_KERNEL_2_6_38
 	default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
 	default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
 	default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
-- 
1.7.3.4

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

* [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12
  2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2011-04-18 14:09 ` [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3 Gustavo Zacarias
@ 2011-04-18 14:09 ` Gustavo Zacarias
  2011-04-21 21:37   ` Peter Korsgaard
  2011-04-21 21:33 ` [Buildroot] [PATCH 1/5] less: bump to version 443 Peter Korsgaard
  4 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2011-04-18 14:09 UTC (permalink / raw)
  To: buildroot

Bump squid to version 3.1.12
Also disable strict error checking since this breaks with gcc 4.6.0+

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

diff --git a/package/squid/squid.mk b/package/squid/squid.mk
index e410bd1..9427a79 100644
--- a/package/squid/squid.mk
+++ b/package/squid/squid.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-SQUID_VERSION = 3.1.11
+SQUID_VERSION = 3.1.12
 SQUID_SITE = http://www.squid-cache.org/Versions/v3/3.1
 SQUID_DEPENDENCIES = libcap host-libcap
 SQUID_AUTORECONF = YES
@@ -15,7 +15,7 @@ SQUID_CONF_OPT =	--enable-wccp --enable-wccpv2 --enable-async-io=8 \
 			--enable-htcp --enable-snmp --enable-linux-netfilter \
 			--enable-removal-policies="lru,heap" \
 			--with-filedescriptors=1024 --disable-ident-lookups \
-			--enable-auth="digest" \
+			--enable-auth="digest" --disable-strict-error-checking \
 			--enable-digest-auth-helpers="password" \
 			--enable-external-acl-helpers="ip_user"
 
-- 
1.7.3.4

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

* [Buildroot] [PATCH 1/5] less: bump to version 443
  2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2011-04-18 14:09 ` [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12 Gustavo Zacarias
@ 2011-04-21 21:33 ` Peter Korsgaard
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-04-21 21:33 UTC (permalink / raw)
  To: buildroot

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

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7
  2011-04-18 14:09 ` [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7 Gustavo Zacarias
@ 2011-04-21 21:35   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-04-21 21:35 UTC (permalink / raw)
  To: buildroot

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

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3
  2011-04-18 14:09 ` [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3 Gustavo Zacarias
@ 2011-04-21 21:37   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-04-21 21:37 UTC (permalink / raw)
  To: buildroot

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

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12
  2011-04-18 14:09 ` [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12 Gustavo Zacarias
@ 2011-04-21 21:37   ` Peter Korsgaard
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2011-04-21 21:37 UTC (permalink / raw)
  To: buildroot

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

 Gustavo> Bump squid to version 3.1.12
 Gustavo> Also disable strict error checking since this breaks with gcc 4.6.0+

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-04-21 21:37 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-18 14:09 [Buildroot] [PATCH 1/5] less: bump to version 443 Gustavo Zacarias
2011-04-18 14:09 ` [Buildroot] [PATCH 2/5] libpng: bump to version 1.4.7 Gustavo Zacarias
2011-04-21 21:35   ` Peter Korsgaard
2011-04-18 14:09 ` [Buildroot] [PATCH 3/5] toolchain: bump kernel headers 2.6.35.12 and 2.6.38.3 Gustavo Zacarias
2011-04-18 14:09 ` [Buildroot] [PATCH 4/5] linux: bump kernel to 2.6.38.3 Gustavo Zacarias
2011-04-21 21:37   ` Peter Korsgaard
2011-04-18 14:09 ` [Buildroot] [PATCH 5/5] squid: bump to version 3.1.12 Gustavo Zacarias
2011-04-21 21:37   ` Peter Korsgaard
2011-04-21 21:33 ` [Buildroot] [PATCH 1/5] less: bump to version 443 Peter Korsgaard

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