diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-10-25 05:26:32 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-10-25 05:26:32 +0000 |
commit | 11df543c60f8df2ef9e19aa12c88544cabb4757a (patch) | |
tree | eff611c92d0634c9064923c7cc4d267fb75cf19f /media-sound/daapd/files/daapd-0.2.4a-defaults.patch | |
parent | Temporary fix for the build without java, see bug #110131. (diff) | |
download | gentoo-2-11df543c60f8df2ef9e19aa12c88544cabb4757a.tar.gz gentoo-2-11df543c60f8df2ef9e19aa12c88544cabb4757a.tar.bz2 gentoo-2-11df543c60f8df2ef9e19aa12c88544cabb4757a.zip |
Make sure that HOWL support is really enabled, as per bug #96818.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'media-sound/daapd/files/daapd-0.2.4a-defaults.patch')
-rw-r--r-- | media-sound/daapd/files/daapd-0.2.4a-defaults.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/media-sound/daapd/files/daapd-0.2.4a-defaults.patch b/media-sound/daapd/files/daapd-0.2.4a-defaults.patch new file mode 100644 index 000000000000..fea56d85ac40 --- /dev/null +++ b/media-sound/daapd/files/daapd-0.2.4a-defaults.patch @@ -0,0 +1,21 @@ +As pointed out by Paul forgey in bug #96818, makefile was defining as constant +overwriting the passed values for the three _ENABLED variables. +This patch makes them take a default value if not set otherwise, allowing us to +pass different values during make stage. + +Index: daapd-0.2.4a/makefile +=================================================================== +--- daapd-0.2.4a.orig/makefile ++++ daapd-0.2.4a/makefile +@@ -1,8 +1,8 @@ + # configure daapd here + +-HOWL_ENABLE = 0 +-ZLIB_ENABLE = 1 +-MPEG4_ENABLE = 0 ++HOWL_ENABLE := 0 ++ZLIB_ENABLE := 1 ++MPEG4_ENABLE := 0 + + + # no need to touch anything below this line |