mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
poco foundation: add illumos support
This commit is contained in:
parent
9b51780458
commit
6e260d9419
@ -281,15 +281,15 @@ void EnvironmentImpl::nodeIdImpl(NodeId& id)
|
|||||||
/// #include <sys/ioctl.h>
|
/// #include <sys/ioctl.h>
|
||||||
#if defined(sun) || defined(__sun)
|
#if defined(sun) || defined(__sun)
|
||||||
#include <sys/sockio.h>
|
#include <sys/sockio.h>
|
||||||
|
#include <netdb.h>
|
||||||
|
#include <net/if.h>
|
||||||
|
#include <net/if_arp.h>
|
||||||
#endif
|
#endif
|
||||||
/// #include <sys/socket.h>
|
/// #include <sys/socket.h>
|
||||||
/// #include <sys/types.h>
|
/// #include <sys/types.h>
|
||||||
/// #include <netinet/in.h>
|
/// #include <netinet/in.h>
|
||||||
/// #include <net/if.h>
|
/// #include <net/if.h>
|
||||||
/// #include <arpa/inet.h>
|
/// #include <arpa/inet.h>
|
||||||
/// #include <netdb.h>
|
|
||||||
/// #include <net/if.h>
|
|
||||||
/// #include <net/if_arp.h>
|
|
||||||
/// #include <unistd.h>
|
/// #include <unistd.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
namespace Poco {
|
namespace Poco {
|
||||||
|
|
||||||
|
|
||||||
#if (POCO_OS == POCO_OS_LINUX) || (POCO_OS == POCO_OS_ANDROID) || (POCO_OS == POCO_OS_CYGWIN) || (POCO_OS == POCO_OS_FREE_BSD)
|
#if (POCO_OS == POCO_OS_LINUX) || (POCO_OS == POCO_OS_ANDROID) || (POCO_OS == POCO_OS_CYGWIN) || (POCO_OS == POCO_OS_FREE_BSD) || (POCO_OS == POCO_OS_SOLARIS)
|
||||||
union semun
|
union semun
|
||||||
{
|
{
|
||||||
int val;
|
int val;
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
namespace Poco {
|
namespace Poco {
|
||||||
|
|
||||||
|
|
||||||
#if (POCO_OS == POCO_OS_LINUX) || (POCO_OS == POCO_OS_ANDROID) || (POCO_OS == POCO_OS_CYGWIN) || (POCO_OS == POCO_OS_FREE_BSD)
|
#if (POCO_OS == POCO_OS_LINUX) || (POCO_OS == POCO_OS_ANDROID) || (POCO_OS == POCO_OS_CYGWIN) || (POCO_OS == POCO_OS_FREE_BSD) || (POCO_OS == POCO_OS_SOLARIS)
|
||||||
union semun
|
union semun
|
||||||
{
|
{
|
||||||
int val;
|
int val;
|
||||||
|
@ -9,6 +9,10 @@ elseif (OS_DARWIN OR OS_FREEBSD)
|
|||||||
target_compile_definitions (_poco_net PUBLIC POCO_HAVE_FD_POLL)
|
target_compile_definitions (_poco_net PUBLIC POCO_HAVE_FD_POLL)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
if (OS_SUNOS)
|
||||||
|
target_link_libraries (_poco_net PUBLIC socket nsl)
|
||||||
|
endif ()
|
||||||
|
|
||||||
# TODO: remove these warning exclusions
|
# TODO: remove these warning exclusions
|
||||||
target_compile_options (_poco_net
|
target_compile_options (_poco_net
|
||||||
PRIVATE
|
PRIVATE
|
||||||
|
Loading…
Reference in New Issue
Block a user