* [Buildroot] [PATCH 2/5] sqlite: bump to version 3.7.5
2011-02-09 13:25 [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Gustavo Zacarias
@ 2011-02-09 13:25 ` Gustavo Zacarias
2011-02-09 21:48 ` Peter Korsgaard
2011-02-09 13:25 ` [Buildroot] [PATCH 3/5] squid: bump to version 3.1.11 Gustavo Zacarias
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Gustavo Zacarias @ 2011-02-09 13:25 UTC (permalink / raw)
To: buildroot
See http://www.sqlite.org/releaselog/3_7_5.html
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/sqlite/sqlite.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk
index 7b3a983..30e75a2 100644
--- a/package/sqlite/sqlite.mk
+++ b/package/sqlite/sqlite.mk
@@ -4,7 +4,7 @@
#
#############################################################
-SQLITE_VERSION = 3070400
+SQLITE_VERSION = 3070500
SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_VERSION).tar.gz
SQLITE_SITE = http://www.sqlite.org
SQLITE_INSTALL_STAGING = YES
--
1.7.3.4
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Buildroot] [PATCH 3/5] squid: bump to version 3.1.11
2011-02-09 13:25 [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Gustavo Zacarias
2011-02-09 13:25 ` [Buildroot] [PATCH 2/5] sqlite: bump to version 3.7.5 Gustavo Zacarias
@ 2011-02-09 13:25 ` Gustavo Zacarias
2011-02-09 21:49 ` Peter Korsgaard
2011-02-09 13:25 ` [Buildroot] [PATCH 4/5] mpd: fix libao support Gustavo Zacarias
` (2 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Gustavo Zacarias @ 2011-02-09 13:25 UTC (permalink / raw)
To: buildroot
Many small fixes, see
http://www.squid-cache.org/Versions/v3/3.1/changesets/SQUID_3_1_11.html
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/squid/squid.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/squid/squid.mk b/package/squid/squid.mk
index 3afa07d..e410bd1 100644
--- a/package/squid/squid.mk
+++ b/package/squid/squid.mk
@@ -4,7 +4,7 @@
#
#############################################################
-SQUID_VERSION = 3.1.10
+SQUID_VERSION = 3.1.11
SQUID_SITE = http://www.squid-cache.org/Versions/v3/3.1
SQUID_DEPENDENCIES = libcap host-libcap
SQUID_AUTORECONF = YES
--
1.7.3.4
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Buildroot] [PATCH 4/5] mpd: fix libao support
2011-02-09 13:25 [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Gustavo Zacarias
2011-02-09 13:25 ` [Buildroot] [PATCH 2/5] sqlite: bump to version 3.7.5 Gustavo Zacarias
2011-02-09 13:25 ` [Buildroot] [PATCH 3/5] squid: bump to version 3.1.11 Gustavo Zacarias
@ 2011-02-09 13:25 ` Gustavo Zacarias
2011-02-09 21:49 ` Peter Korsgaard
2011-02-09 13:25 ` [Buildroot] [PATCH 5/5] mpd: fix mpd.conf installation check Gustavo Zacarias
2011-02-09 21:48 ` [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Peter Korsgaard
4 siblings, 1 reply; 10+ messages in thread
From: Gustavo Zacarias @ 2011-02-09 13:25 UTC (permalink / raw)
To: buildroot
libao output must be explicitly enabled, so fix it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/multimedia/mpd/mpd.mk | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/package/multimedia/mpd/mpd.mk b/package/multimedia/mpd/mpd.mk
index c60ccc6..971ad67 100644
--- a/package/multimedia/mpd/mpd.mk
+++ b/package/multimedia/mpd/mpd.mk
@@ -18,8 +18,7 @@ endif
ifeq ($(BR2_PACKAGE_MPD_AO),y)
MPD_DEPENDENCIES += libao
-else
-MPD_CONF_OPT += --disable-ao
+MPD_CONF_OPT += --enable-ao
endif
ifeq ($(BR2_PACKAGE_MPD_BZIP2),y)
--
1.7.3.4
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 5/5] mpd: fix mpd.conf installation check
2011-02-09 13:25 [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Gustavo Zacarias
` (2 preceding siblings ...)
2011-02-09 13:25 ` [Buildroot] [PATCH 4/5] mpd: fix libao support Gustavo Zacarias
@ 2011-02-09 13:25 ` Gustavo Zacarias
2011-02-09 21:50 ` Peter Korsgaard
2011-02-09 21:48 ` [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Peter Korsgaard
4 siblings, 1 reply; 10+ messages in thread
From: Gustavo Zacarias @ 2011-02-09 13:25 UTC (permalink / raw)
To: buildroot
If target /etc/mpd.conf exists the evaluation will be fail thus breaking
the build process. Fix it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/multimedia/mpd/mpd.mk | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/multimedia/mpd/mpd.mk b/package/multimedia/mpd/mpd.mk
index 971ad67..61b107b 100644
--- a/package/multimedia/mpd/mpd.mk
+++ b/package/multimedia/mpd/mpd.mk
@@ -96,9 +96,10 @@ MPD_CONF_OPT += --disable-wavpack
endif
define MPD_INSTALL_EXTRA_FILES
- [ ! -f $(TARGET_DIR)/etc/mpd.conf ] && \
+ @if [ ! -f $(TARGET_DIR)/etc/mpd.conf ]; then \
$(INSTALL) -D package/multimedia/mpd/mpd.conf \
- $(TARGET_DIR)/etc/mpd.conf
+ $(TARGET_DIR)/etc/mpd.conf; \
+ fi
$(INSTALL) -m 0755 -D package/multimedia/mpd/S95mpd \
$(TARGET_DIR)/etc/init.d/S95mpd
endef
--
1.7.3.4
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22
2011-02-09 13:25 [Buildroot] [PATCH 1/5] iw: bump to version 0.9.22 Gustavo Zacarias
` (3 preceding siblings ...)
2011-02-09 13:25 ` [Buildroot] [PATCH 5/5] mpd: fix mpd.conf installation check Gustavo Zacarias
@ 2011-02-09 21:48 ` Peter Korsgaard
4 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2011-02-09 21:48 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> New antenna configuration and wds peer commands.
Gustavo> New mesh functionality.
Gustavo> Misc fixes.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 10+ messages in thread