aboutsummaryrefslogtreecommitdiffstats
path: root/main/rsync
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2014-07-14 11:45:50 +0300
committerTimo Teräs <timo.teras@iki.fi>2014-07-14 11:55:18 +0300
commitd0997e1926abcca8999f2381c7bd265a2ae6e57b (patch)
tree34daca784524b9bf0f23348da13381aedb151818 /main/rsync
parentd7e2e3bbc6f85e739a5d4e8382dc5f146fc3eb39 (diff)
main/rsync: force IPv6 support on
the autoconfigury fails to detect IPv6 support on musl (linux test checks for __GLIBC__). ref #3158
Diffstat (limited to 'main/rsync')
-rw-r--r--main/rsync/APKBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/rsync/APKBUILD b/main/rsync/APKBUILD
index ce369eee98e..a184966bb8f 100644
--- a/main/rsync/APKBUILD
+++ b/main/rsync/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=rsync
pkgver=3.1.1
-pkgrel=0
+pkgrel=1
pkgdesc="A file transfer program to keep remote files in sync"
url="http://samba.anu.edu.au/rsync/"
arch="all"
@@ -26,6 +26,8 @@ prepare() {
build() {
cd "$_builddir"
+ # Force IPv6 enabled, upstream bug https://bugzilla.samba.org/show_bug.cgi?id=10715
+ CFLAGS="$CFLAGS -DINET6" \
./configure \
--build=$CBUILD \
--host=$CHOST \