]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/http/server2/Jamfile.v2
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server2 / Jamfile.v2
CommitLineData
7c673cae 1#
1e59de90 2# Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
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
11fdf7f2
TL
8lib socket ; # SOLARIS
9lib nsl ; # SOLARIS
10lib ws2_32 ; # NT
11lib mswsock ; # NT
12lib ipv6 ; # HPUX
13lib network ; # HAIKU
7c673cae
FG
14
15exe server
16 : connection.cpp
b32b8144 17 io_context_pool.cpp
7c673cae
FG
18 main.cpp
19 mime_types.cpp
20 reply.cpp
21 request_handler.cpp
22 request_parser.cpp
23 server.cpp
24 /boost/system//boost_system
11fdf7f2 25 /boost/chrono//boost_chrono
7c673cae
FG
26 /boost/thread//boost_thread
27 : <define>BOOST_ALL_NO_LIB=1
28 <threading>multi
11fdf7f2
TL
29 <target-os>solaris:<library>socket
30 <target-os>solaris:<library>nsl
31 <target-os>windows:<define>_WIN32_WINNT=0x0501
32 <target-os>windows,<toolset>gcc:<library>ws2_32
33 <target-os>windows,<toolset>gcc:<library>mswsock
34 <target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
35 <target-os>hpux,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
36 <target-os>hpux:<library>ipv6
37 <target-os>haiku:<library>network
7c673cae 38 ;