diff options
author | Frans Meulenbroeks <fransmeulenbroeks@yahoo.com> | 2006-06-27 21:02:11 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-27 21:02:11 +0000 |
commit | 6ee41b771288404380e3e3f88828b61328822be6 (patch) | |
tree | 7ceb8a0296541418c9d45ab9837a6b41163e6c84 | |
parent | 5af282b972026bf28c5ed62db5bcf5f60e7b247f (diff) |
icecast: added --disable-yp (otherwise it will try to use curl but for
a cross build this breaks configure)
-rw-r--r-- | packages/icecast/icecast_2.2.0.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/icecast/icecast_2.2.0.bb b/packages/icecast/icecast_2.2.0.bb index 7b6ba73b01..7322af3087 100644 --- a/packages/icecast/icecast_2.2.0.bb +++ b/packages/icecast/icecast_2.2.0.bb @@ -1,4 +1,4 @@ -PR = "r3" +PR = "r4" MAINTAINER = "Oyvind Repvik <nail@nslu2-linux.org" LICENSE = "GPL-2" @@ -9,7 +9,9 @@ DEPENDS = "libvorbis libogg libxslt" RDEPENDS = "libvorbis libogg libxslt" SRC_URI = "http://downloads.us.xiph.org/releases/icecast/${PN}-${PV}.tar.gz" -EXTRA_OECONF = "--with-ogg=${STAGING_LIBDIR} --with-vorbis=${STAGING_LIBDIR}" + +# disable yp as curl cannot be configured +EXTRA_OECONF = "--disable-yp --with-ogg=${STAGING_LIBDIR} --with-vorbis=${STAGING_LIBDIR}" S = "${WORKDIR}/${PN}-${PV}" inherit autotools |