diff options
-rw-r--r-- | main/dhcpcd/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/dhcpcd/APKBUILD b/main/dhcpcd/APKBUILD index 727583e66f..e4ae94f48d 100644 --- a/main/dhcpcd/APKBUILD +++ b/main/dhcpcd/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=dhcpcd pkgver=6.2.1 -pkgrel=0 +pkgrel=1 pkgdesc="RFC2131 compliant DHCP client" url="http://roy.marples.name/projects/dhcpcd/" arch="all" @@ -26,6 +26,8 @@ prepare() { build() { cd "$srcdir/$pkgname-$pkgver" + # work around issue with in6_pktinfo in uclibc + CFLAGS="$CFLAGS -D_GNU_SOURCE" ./configure \ --build=$CBUILD \ --host=$CHOST \ |