1# 2# Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) 3# 4# Distributed under the Boost Software License, Version 1.0. (See accompanying 5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6# 7 8lib socket ; # SOLARIS 9lib nsl ; # SOLARIS 10lib ws2_32 ; # NT 11lib mswsock ; # NT 12lib ipv6 ; # HPUX 13lib network ; # HAIKU 14 15exe server 16 : file_handler.cpp 17 main.cpp 18 mime_types.cpp 19 reply.cpp 20 request_parser.cpp 21 server.cpp 22 /boost/system//boost_system 23 /boost/chrono//boost_chrono 24 /boost/thread//boost_thread 25 : <define>BOOST_ALL_NO_LIB=1 26 <threading>multi 27 <target-os>solaris:<library>socket 28 <target-os>solaris:<library>nsl 29 <target-os>windows:<define>_WIN32_WINNT=0x0501 30 <target-os>windows,<toolset>gcc:<library>ws2_32 31 <target-os>windows,<toolset>gcc:<library>mswsock 32 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS 33 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED 34 <target-os>hpux:<library>ipv6 35 <target-os>haiku:<library>network 36 ; 37