czmq: Fix invocation when building with clang. (#4479)

Also bump to latest stable version.
This commit is contained in:
Diana Bite 2017-06-13 13:43:54 +01:00 committed by Adam J. Stewart
parent 14aa3b63e3
commit d450e4a93b

View File

@ -28,13 +28,20 @@
class Czmq(AutotoolsPackage):
""" A C interface to the ZMQ library """
homepage = "http://czmq.zeromq.org"
url = "https://github.com/zeromq/czmq/archive/v3.0.2.tar.gz"
url = "https://github.com/zeromq/czmq/archive/v4.0.2.tar.gz"
version('3.0.2', '23e9885f7ee3ce88d99d0425f52e9be1',
url='https://github.com/zeromq/czmq/archive/v3.0.2.tar.gz')
version('4.0.2', 'a65317a3fb8238cf70e3e992e381f9cc')
version('3.0.2', '23e9885f7ee3ce88d99d0425f52e9be1')
depends_on('libtool', type='build')
depends_on('automake', type='build')
depends_on('autoconf', type='build')
depends_on('pkg-config', type='build')
depends_on('zeromq')
def configure_args(self):
config_args = []
if 'clang' in self.compiler.name:
config_args.append("CFLAGS=-Wno-gnu")
config_args.append("CXXFLAS=-Wno-gnu")
return config_args