]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp03/ssl/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / ssl / Jamfile.v2
1 #
2 # Copyright (c) 2003-2017 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
8 import os ;
9
10 if [ os.name ] = SOLARIS
11 {
12 lib socket ;
13 lib nsl ;
14 }
15 else if [ os.name ] = NT
16 {
17 lib ws2_32 ;
18 lib mswsock ;
19 }
20 else if [ os.name ] = HPUX
21 {
22 lib ipv6 ;
23 }
24 else if [ os.name ] = HAIKU
25 {
26 lib network ;
27 }
28
29 if [ os.name ] = NT
30 {
31 lib ssl : : <name>ssleay32 ;
32 lib crypto : : <name>libeay32 ;
33 }
34 else
35 {
36 lib ssl ;
37 lib crypto ;
38 }
39
40 project
41 : requirements
42 <library>/boost/system//boost_system
43 <define>BOOST_ALL_NO_LIB=1
44 <threading>multi
45 <os>SOLARIS:<library>socket
46 <os>SOLARIS:<library>nsl
47 <os>NT:<define>_WIN32_WINNT=0x0501
48 <os>NT,<toolset>gcc:<library>ws2_32
49 <os>NT,<toolset>gcc:<library>mswsock
50 <os>NT,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
51 <os>HPUX,<toolset>gcc:<define>_XOPEN_SOURCE_EXTENDED
52 <os>HPUX:<library>ipv6
53 <os>HAIKU:<library>network
54 <library>ssl
55 <library>crypto
56 ;
57
58 exe client : client.cpp ;
59 exe server : server.cpp ;