diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-06-12 18:49:31 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-06-12 18:49:31 +0200 |
commit | 9e2e942a465c15d155a7237c8a48130f067accbb (patch) | |
tree | 9e7753a95a19c811449393c7dd19b128b6a3ea61 /testing | |
parent | 22f35fe9d8fd77bc5eaa9f6642e6782837c15523 (diff) | |
download | aports-9e2e942a465c15d155a7237c8a48130f067accbb.tar.bz2 aports-9e2e942a465c15d155a7237c8a48130f067accbb.tar.xz |
testing/csync2: disable on ppc64le due to build failure
rsync.c:52:15: error: static declaration of 'strlcpy' follows non-static declaration
static size_t strlcpy(char *d, const char *s, size_t bufsize)
^~~~~~~
In file included from csync2.h:33:0,
from rsync.c:21:
/usr/include/string.h:84:8: note: previous declaration of 'strlcpy' was here
size_t strlcpy (char *, const char *, size_t);
^~~~~~~
Diffstat (limited to 'testing')
-rw-r--r-- | testing/csync2/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/csync2/APKBUILD b/testing/csync2/APKBUILD index 6fdbb2ae25..857cd6c2aa 100644 --- a/testing/csync2/APKBUILD +++ b/testing/csync2/APKBUILD @@ -5,7 +5,8 @@ pkgver=2.0 pkgrel=0 pkgdesc="Cluster synchronization tool" url="http://oss.linbit.com/csync2/" -arch="all" +# ppc64le: failed to build +arch="all !ppc64le" license="GPL-2.0-or-later" options="!check" # tests needs to modify system's network config makedepends="autoconf automake bison flex gnutls-dev librsync-dev sqlite-dev" |