# # Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com) # # Distributed under the Boost Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # import os ; if [ os.name ] = SOLARIS { lib socket ; lib nsl ; } else if [ os.name ] = NT { lib ws2_32 ; lib mswsock ; } else if [ os.name ] = HPUX { lib ipv6 ; } else if [ os.name ] = HAIKU { lib network ; } project : requirements /boost/system//boost_system /boost/thread//boost_thread BOOST_ALL_NO_LIB=1 multi SOLARIS:socket SOLARIS:nsl NT:_WIN32_WINNT=0x0501 NT,gcc:ws2_32 NT,gcc:mswsock NT,gcc-cygwin:__USE_W32_SOCKETS HPUX,gcc:_XOPEN_SOURCE_EXTENDED HPUX:ipv6 HAIKU:network ; exe async_tcp_echo_server : async_tcp_echo_server.cpp ; exe async_udp_echo_server : async_udp_echo_server.cpp ; exe blocking_tcp_echo_client : blocking_tcp_echo_client.cpp ; exe blocking_tcp_echo_server : blocking_tcp_echo_server.cpp ; exe blocking_udp_echo_client : blocking_udp_echo_client.cpp ; exe blocking_udp_echo_server : blocking_udp_echo_server.cpp ;