aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)