# # Copyright (c) 2003-2007 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 ; } project : requirements /boost/system//boost_system BOOST_ALL_NO_LIB=1 multi SOLARIS:socket SOLARIS:nsl NT,gcc:ws2_32 NT,gcc:mswsock ; exe accept_timeout : accept_timeout.cpp ; exe connect_timeout : connect_timeout.cpp ; exe datagram_receive_timeout : datagram_receive_timeout.cpp ; exe stream_receive_timeout : stream_receive_timeout.cpp ;