aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2025-08-24 20:18:31 -0700
committerGarrett D'Amore <garrett@damore.org>2025-08-24 20:18:31 -0700
commit79374c01facc6eccbea4d59eeff0ae36690ccf09 (patch)
treee70254ae6ebf6ac8c193f0a78954ca5e1dad7d32 /src
parent0caea3cd3c436a68eb5231478e951bafbe1e1b71 (diff)
downloadnng-79374c01facc6eccbea4d59eeff0ae36690ccf09.tar.gz
nng-79374c01facc6eccbea4d59eeff0ae36690ccf09.tar.bz2
nng-79374c01facc6eccbea4d59eeff0ae36690ccf09.zip
Disable illumos event ports until we can debug them.
Diffstat (limited to 'src')
-rw-r--r--src/platform/posix/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/platform/posix/CMakeLists.txt b/src/platform/posix/CMakeLists.txt
index ace04284..e8e89e1c 100644
--- a/src/platform/posix/CMakeLists.txt
+++ b/src/platform/posix/CMakeLists.txt
@@ -65,7 +65,8 @@ if (NNG_PLATFORM_POSIX)
nng_check_struct_member(msghdr msg_control sys/socket.h NNG_HAVE_MSG_CONTROL)
nng_check_sym(eventfd sys/eventfd.h NNG_HAVE_EVENTFD)
nng_check_sym(kqueue sys/event.h NNG_HAVE_KQUEUE)
- nng_check_sym(port_create port.h NNG_HAVE_PORT_CREATE)
+ # Disabling illumos PORTs until we get a chance to fix them.
+ # nng_check_sym(port_create port.h NNG_HAVE_PORT_CREATE)
nng_check_sym(epoll_create sys/epoll.h NNG_HAVE_EPOLL)
nng_check_sym(epoll_create1 sys/epoll.h NNG_HAVE_EPOLL_CREATE1)
nng_check_sym(poll poll.h NNG_HAVE_POLL)