zeromq / pyzmq

PyZMQ: Python bindings for zeromq
http://zguide.zeromq.org/py:all
BSD 3-Clause "New" or "Revised" License
3.66k stars 638 forks source link

add platform.hpp for solaris #1887

Closed hurzhurz closed 1 year ago

hurzhurz commented 1 year ago

adds platform.hpp so that bundled libzmq can be compiled on solaris.

closes #1014

platform.hpp was created with configure script from libzmq 4.3.4 on:

# uname -a
SunOS xxx 5.11 11.4.44.113.4 sun4v sparc sun4v non-virtualized
# python -c 'import sys; print(sys.platform)'
sunos5

install/compile tested with pyzmq 25.0.2 and 25.1.0 via pip:

pip install https://github.com/hurzhurz/pyzmq/archive/refs/tags/v25.0.2-sunos.tar.gz
pip install https://github.com/hurzhurz/pyzmq/archive/refs/tags/v25.1.0-sunos.tar.gz

used/tested together with salt 3006.1 (installed via pip)

minrk commented 1 year ago

Thanks!