summaryrefslogtreecommitdiffstats
path: root/src/dbus.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2011-11-15 15:43:58 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2011-11-15 15:43:58 (GMT)
commit6ca88cec3aeaf2dda31e1a8c1038a1daf910b814 (patch)
treed109604695f74f6d70875ce025838d4ab671672f /src/dbus.mk
parentf2e6c5b0b7f88fe06c2b98870c241a4c190db213 (diff)
parentefaf6a291272dbb45ca7c891f3052ec46d6a8e87 (diff)
downloadmxe-6ca88cec3aeaf2dda31e1a8c1038a1daf910b814.zip
mxe-6ca88cec3aeaf2dda31e1a8c1038a1daf910b814.tar.gz
mxe-6ca88cec3aeaf2dda31e1a8c1038a1daf910b814.tar.bz2
merge
Diffstat (limited to 'src/dbus.mk')
-rw-r--r--src/dbus.mk10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/dbus.mk b/src/dbus.mk
index 60d7324..ed2836a 100644
--- a/src/dbus.mk
+++ b/src/dbus.mk
@@ -4,8 +4,8 @@
# dbus
PKG := dbus
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 1.5.0
-$(PKG)_CHECKSUM := 4f0c82af6de628d7359dcdbc0da402f8e369e367
+$(PKG)_VERSION := 1.5.8
+$(PKG)_CHECKSUM := c5e9e286b5757f892cc21f894145e7f05c8fc813
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_WEBSITE := http://$(PKG).freedesktop.org/
@@ -15,12 +15,12 @@ $(PKG)_DEPS := gcc expat
define $(PKG)_UPDATE
wget -q -O- 'http://cgit.freedesktop.org/dbus/dbus/refs/tags' | \
$(SED) -n "s,.*<a href='[^']*/tag/?id=[^0-9]*\\([0-9][^']*\\)'.*,\\1,p" | \
- grep -v '^1\.[0123]\.' | \
+ grep -v '^1\.[01234]\.' | \
head -1
endef
define $(PKG)_BUILD
- cd '$(1)' && ./configure \
+ cd '$(1)' && automake && ./configure \
--host='$(TARGET)' \
--prefix='$(PREFIX)/$(TARGET)' \
--with-xml=expat \
@@ -29,8 +29,6 @@ define $(PKG)_BUILD
--disable-asserts \
--disable-shared \
--enable-static \
- --disable-tests \
- --disable-standalone-tests \
--disable-silent-rules
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef