diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-07-14 11:45:50 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-07-14 11:55:18 +0300 |
commit | d0997e1926abcca8999f2381c7bd265a2ae6e57b (patch) | |
tree | 34daca784524b9bf0f23348da13381aedb151818 /main/rsync/APKBUILD | |
parent | d7e2e3bbc6f85e739a5d4e8382dc5f146fc3eb39 (diff) | |
download | aports-d0997e1926abcca8999f2381c7bd265a2ae6e57b.tar.bz2 aports-d0997e1926abcca8999f2381c7bd265a2ae6e57b.tar.xz |
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/APKBUILD')
-rw-r--r-- | main/rsync/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/rsync/APKBUILD b/main/rsync/APKBUILD index ce369eee98..a184966bb8 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 \ |