summaryrefslogtreecommitdiff
path: root/package/mpd/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-19 00:54:12 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-19 00:54:12 +0100
commit1d0c46287d508236506ee59417e8da05c0cee3e5 (patch)
treee44b4a7ad97472ca0523cff975a958a7b93982e5 /package/mpd/Makefile
parentb668796b88da374fefa35b87f305ebcc03147e5d (diff)
avoid autotools usage on host system
There are to many combinations of autotools on host systems. If you need to patch the autotool buildsystem of a package always add a autotool.patch and regenerate configure on your host. That is the most portable way.
Diffstat (limited to 'package/mpd/Makefile')
-rw-r--r--package/mpd/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/package/mpd/Makefile b/package/mpd/Makefile
index 43fb9cb00..3920f2ebc 100644
--- a/package/mpd/Makefile
+++ b/package/mpd/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= mpd
PKG_VERSION:= 0.15.8
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= 6680970274c389fd07e2b35721de1764
PKG_DESCR:= A music player daemon
PKG_SECTION:= net
@@ -77,8 +77,6 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,MPD,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-AUTOTOOL_STYLE:= autotool
-
TCFLAGS+= -std=gnu99
XAKE_FLAGS+= MPD_CFLAGS='-D_GNU_SOURCE'
CONFIGURE_ARGS+= --disable-httpd-output \
@@ -125,9 +123,9 @@ CONFIGURE_ARGS+= \
endif
ifneq (${ADK_PACKAGE_MPD_WITH_FLAC},)
-CONFIGURE_ARGS+= --enable-flac
+CONFIGURE_ARGS+= --enable-flac --enable-oggflac
else
-CONFIGURE_ARGS+= --disable-flac
+CONFIGURE_ARGS+= --disable-flac --disable-oggflac
endif
ifneq (${ADK_PACKAGE_MPD_WITH_WAV},)