From d4414f54910aeaa4809a7eacea75a089a0820f40 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Sun, 22 Oct 2017 15:10:49 +0100 Subject: Remove support for the Solaris IOCP socket engine. After discussing this with Adam we have decided that there is very little point in keeping this now that Solaris has been killed. Any legacy Solaris users will have to make do with poll. This change does not affect users of Solaris forks like Illumos as they have support for epoll which will have already been selected over Solaris IOCP by configure. --- tools/test-build | 1 - 1 file changed, 1 deletion(-) (limited to 'tools') diff --git a/tools/test-build b/tools/test-build index eb77a2bcf..c74dbb4e0 100755 --- a/tools/test-build +++ b/tools/test-build @@ -51,7 +51,6 @@ foreach my $compiler (@compilers) { push @socketengines, 'epoll' if test_header $compiler, 'sys/epoll.h'; push @socketengines, 'kqueue' if test_file $compiler, 'kqueue.cpp'; push @socketengines, 'poll' if test_header $compiler, 'poll.h'; - push @socketengines, 'ports' if test_header $compiler, 'ports.h'; foreach my $socketengine (@socketengines) { say "Attempting to build using the $compiler compiler and the $socketengine socket engine..."; system './configure', '--enable-extras', $ENV{TEST_BUILD_MODULES} if defined $ENV{TEST_BUILD_MODULES}; -- cgit v1.2.3