pebbe / zmq4

A Go interface to ZeroMQ version 4
BSD 2-Clause "Simplified" License
1.17k stars 163 forks source link

Module doesn't compile anymore on go1.5rc1 #54

Closed lstep closed 9 years ago

lstep commented 9 years ago

Here is what happens:

$ go get github.com/pebbe/zmq4
# github.com/pebbe/zmq4
could not determine kind of name for C.ZMQ_CURVE_PUBLICKEY
could not determine kind of name for C.ZMQ_CURVE_SECRETKEY
could not determine kind of name for C.ZMQ_CURVE_SERVERKEY
could not determine kind of name for C.ZMQ_GSSAPI_PLAINTEXT
could not determine kind of name for C.ZMQ_GSSAPI_PRINCIPAL
could not determine kind of name for C.ZMQ_GSSAPI_SERVER
could not determine kind of name for C.ZMQ_GSSAPI_SERVICE_PRINCIPAL
could not determine kind of name for C.ZMQ_HANDSHAKE_IVL
could not determine kind of name for C.ZMQ_IMMEDIATE
could not determine kind of name for C.ZMQ_IPV6
could not determine kind of name for C.ZMQ_LAST_ENDPOINT
could not determine kind of name for C.ZMQ_MAXMSGSIZE
could not determine kind of name for C.ZMQ_MECHANISM
could not determine kind of name for C.ZMQ_MULTICAST_HOPS
could not determine kind of name for C.ZMQ_PLAIN_PASSWORD
could not determine kind of name for C.ZMQ_PLAIN_SERVER
could not determine kind of name for C.ZMQ_PLAIN_USERNAME
could not determine kind of name for C.ZMQ_RCVHWM
could not determine kind of name for C.ZMQ_SNDHWM
could not determine kind of name for C.ZMQ_SOCKS_PROXY
could not determine kind of name for C.ZMQ_TCP_KEEPALIVE
could not determine kind of name for C.ZMQ_TCP_KEEPALIVE_CNT
could not determine kind of name for C.ZMQ_TCP_KEEPALIVE_IDLE
could not determine kind of name for C.ZMQ_TCP_KEEPALIVE_INTVL
could not determine kind of name for C.ZMQ_TOS
could not determine kind of name for C.ZMQ_ZAP_DOMAIN
pebbe commented 9 years ago

It looks like you're installing zmq4 against ZeroMQ version 2. Install github.com/pebbe/zmq2 instead.

lstep commented 9 years ago

You're right!