diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-02-05 05:25:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-05 05:25:37 +0000 |
commit | 19f3fb04fe976bf96329356ea2209e92e8827a21 (patch) | |
tree | 948ec3cb43fe3000c0ebf7375a37ae492cfe21d3 | |
parent | 858581d2eaddc72696473470bc66bc0a3245aea2 (diff) |
wget: disable ipv6 for SlugOS
slugos doesn't support IPV6 by default, and wget fails on IPV4 if IPV6 isn't
supported in the kernel.
-rw-r--r-- | packages/wget/wget_1.9.1.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/wget/wget_1.9.1.bb b/packages/wget/wget_1.9.1.bb index eb5e509085..ec1f00d4ad 100644 --- a/packages/wget/wget_1.9.1.bb +++ b/packages/wget/wget_1.9.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more." SECTION = "console/network" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" DEPENDS = "" -PR = "r3" +PR = "r4" LICENSE = "GPL" SRC_URI = "${GNU_MIRROR}/wget/wget-${PV}.tar.gz \ @@ -16,6 +16,8 @@ EXTRA_OECONF = "--enable-ipv6" # The unslung kernel does not support ipv6 EXTRA_OECONF_unslung = "" +# SlugOS kernels do not support ipv6. Can be loaded as a module. +EXTRA_OECONF_slugos = "" do_configure () { if [ ! -e acinclude.m4 ]; then |