diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-10-03 02:56:17 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-10-03 02:56:17 +0000 |
commit | b7ccbf81dc028b0ea2a8b770fcae1af3b297eff9 (patch) | |
tree | 9fbfab29ef2aa0f425c48ef60b392d2ed50fe7ac /package/mt-daapd | |
parent | a985e159f8c370771b34ebc7e72df90c4394161b (diff) | |
download | upstream-b7ccbf81dc028b0ea2a8b770fcae1af3b297eff9.tar.gz upstream-b7ccbf81dc028b0ea2a8b770fcae1af3b297eff9.tar.bz2 upstream-b7ccbf81dc028b0ea2a8b770fcae1af3b297eff9.zip |
update to new upstream release (v0.2.3)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2042 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mt-daapd')
-rw-r--r-- | package/mt-daapd/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/package/mt-daapd/Makefile b/package/mt-daapd/Makefile index 98a2088c30..7a2ab9b43f 100644 --- a/package/mt-daapd/Makefile +++ b/package/mt-daapd/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mt-daapd -PKG_VERSION:=0.2.1.1 +PKG_VERSION:=0.2.3 PKG_RELEASE:=1 -PKG_MD5SUM:=87356d2750ad82388a58d901aa566465 +PKG_MD5SUM:=17aa3fa0601cbe172d18f53489141e5a PKG_SOURCE_URL:=@SF/mt-daapd PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -22,8 +22,8 @@ $(PKG_BUILD_DIR)/.configured: (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ - CPPFLAGS="-I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include" \ - LDFLAGS="-L$(STAGING_DIR)/usr/include -L$(STAGING_DIR)/usr/lib" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ ac_cv_func_setpgrp_void=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ @@ -49,7 +49,11 @@ $(PKG_BUILD_DIR)/.configured: --disable-static \ --enable-mdns \ --enable-howl \ + --with-id3tag="$(STAGING_DIR)/usr" \ + --with-gdbm-includes="$(STAGING_DIR)/usr/include" \ + --with-gdbm-libs="$(STAGING_DIR)/usr/lib" \ --with-howl-includes="$(STAGING_DIR)/usr/include/howl" \ + --with-howl-libs="$(STAGING_DIR)/usr/lib" \ --without-static-libs \ ) touch $@ |