diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2015-11-09 00:35:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-10 07:37:08 +0000 |
commit | e46aa16eccf7101c888c1b20f8cef9a1e119e11a (patch) | |
tree | 9d214439eda3d2eb018a4f411242cc11249be302 | |
parent | 56b1b14ccb762ca5d21b91885210a5ddb9f4eabb (diff) | |
download | aports-e46aa16eccf7101c888c1b20f8cef9a1e119e11a.tar.bz2 aports-e46aa16eccf7101c888c1b20f8cef9a1e119e11a.tar.xz |
main/zeromq: rebuild against libsodium
the return value for sodium_init is "todo" so $CXXFLAGS changes.
-rw-r--r-- | main/zeromq/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/zeromq/APKBUILD b/main/zeromq/APKBUILD index 538412279c..fccb4fc33e 100644 --- a/main/zeromq/APKBUILD +++ b/main/zeromq/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=zeromq pkgver=4.1.3 -pkgrel=0 +pkgrel=1 pkgdesc="The ZeroMQ messaging library and tools" url="http://www.zeromq.org/" arch="all" @@ -27,6 +27,8 @@ prepare() { build() { cd "$_builddir" + # return code from sodium_init is todo in curve_client.cpp & curve_server.cpp + export CXXFLAGS="$CXXFLAGS -Wno-unused-result" ./configure \ --build=$CBUILD \ --host=$CHOST \ |