czmq: Fix invocation when building with clang. (#4479)
Also bump to latest stable version.
This commit is contained in:
parent
14aa3b63e3
commit
d450e4a93b
@ -28,13 +28,20 @@
|
|||||||
class Czmq(AutotoolsPackage):
|
class Czmq(AutotoolsPackage):
|
||||||
""" A C interface to the ZMQ library """
|
""" A C interface to the ZMQ library """
|
||||||
homepage = "http://czmq.zeromq.org"
|
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',
|
version('4.0.2', 'a65317a3fb8238cf70e3e992e381f9cc')
|
||||||
url='https://github.com/zeromq/czmq/archive/v3.0.2.tar.gz')
|
version('3.0.2', '23e9885f7ee3ce88d99d0425f52e9be1')
|
||||||
|
|
||||||
depends_on('libtool', type='build')
|
depends_on('libtool', type='build')
|
||||||
depends_on('automake', type='build')
|
depends_on('automake', type='build')
|
||||||
depends_on('autoconf', type='build')
|
depends_on('autoconf', type='build')
|
||||||
depends_on('pkg-config', type='build')
|
depends_on('pkg-config', type='build')
|
||||||
depends_on('zeromq')
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user