]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/http/server2/Jamfile.v2
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server2 / Jamfile.v2
CommitLineData
7c673cae 1#
b32b8144 2# Copyright (c) 2003-2017 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
8import os ;
9
10if [ os.name ] = SOLARIS
11{
12 lib socket ;
13 lib nsl ;
14}
15else if [ os.name ] = NT
16{
17 lib ws2_32 ;
18 lib mswsock ;
19}
20else if [ os.name ] = HPUX
21{
22 lib ipv6 ;
23}
24else if [ os.name ] = HAIKU
25{
26 lib network ;
27}
28
29exe server
30 : connection.cpp
b32b8144 31 io_context_pool.cpp
7c673cae
FG
32 main.cpp
33 mime_types.cpp
34 reply.cpp
35 request_handler.cpp
36 request_parser.cpp
37 server.cpp
38 /boost/system//boost_system
39 /boost/thread//boost_thread
40 : <define>BOOST_ALL_NO_LIB=1
41 <threading>multi
42 <os>SOLARIS:<library>socket
43 <os>SOLARIS:<library>nsl
44 <os>NT:<define>_WIN32_WINNT=0x0501
45 <os>NT,<toolset>gcc:<library>ws2_32
46 <os>NT,<toolset>gcc:<library>mswsock
47 <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
48 <os>HPUX,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
49 <os>HPUX:<library>ipv6
50 <os>HAIKU:<library>network
51 ;