mirror of
https://github.com/boostorg/asio.git
synced 2026-01-30 19:32:09 +00:00
........ r63568 | chris_kohlhoff | 2010-07-04 16:49:18 +1000 (Sun, 04 Jul 2010) | 2 lines Fix coroutine macros to work with MSVC's edit-and-continue debug settings. ........ r63569 | chris_kohlhoff | 2010-07-04 16:53:57 +1000 (Sun, 04 Jul 2010) | 2 lines Reworked timeout examples. ........ r63570 | chris_kohlhoff | 2010-07-04 16:57:32 +1000 (Sun, 04 Jul 2010) | 2 lines Ensure arguments to handlers are passed as const types. ........ r63571 | chris_kohlhoff | 2010-07-04 17:19:30 +1000 (Sun, 04 Jul 2010) | 2 lines Fences for arm. ........ r63572 | chris_kohlhoff | 2010-07-04 17:20:18 +1000 (Sun, 04 Jul 2010) | 2 lines Fences for arm. ........ r63573 | chris_kohlhoff | 2010-07-04 17:21:24 +1000 (Sun, 04 Jul 2010) | 2 lines Fix forward declaration. ........ r63574 | chris_kohlhoff | 2010-07-04 17:23:27 +1000 (Sun, 04 Jul 2010) | 2 lines Add cancellation of reactor operations. ........ r63575 | chris_kohlhoff | 2010-07-04 17:26:36 +1000 (Sun, 04 Jul 2010) | 2 lines Fixes in non_blocking_read. ........ r63576 | chris_kohlhoff | 2010-07-04 17:28:20 +1000 (Sun, 04 Jul 2010) | 2 lines Make more tolerant of different platform sdk variants. ........ r63577 | chris_kohlhoff | 2010-07-04 17:37:42 +1000 (Sun, 04 Jul 2010) | 2 lines Eliminate unnecessary uses of hash_map. ........ r63578 | chris_kohlhoff | 2010-07-04 17:43:23 +1000 (Sun, 04 Jul 2010) | 2 lines Point docs at new timeout examples. ........ r63592 | chris_kohlhoff | 2010-07-04 23:11:14 +1000 (Sun, 04 Jul 2010) | 2 lines Add missing operator+ overload. Fixes #4382. ........ r63594 | chris_kohlhoff | 2010-07-04 23:42:41 +1000 (Sun, 04 Jul 2010) | 2 lines Fix unused parameters. ........ r63646 | chris_kohlhoff | 2010-07-05 17:43:22 +1000 (Mon, 05 Jul 2010) | 2 lines Add missing parameter. ........ [SVN r63682]
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
#
|
|
# Copyright (c) 2003-2010 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)
|
|
#
|
|
|
|
subproject libs/asio/example/timeouts ;
|
|
|
|
project boost : $(BOOST_ROOT) ;
|
|
|
|
if $(UNIX)
|
|
{
|
|
switch $(JAMUNAME)
|
|
{
|
|
case SunOS* :
|
|
{
|
|
SOCKET_LIBS = <find-library>socket <find-library>nsl ;
|
|
}
|
|
}
|
|
}
|
|
|
|
template asio_timeouts_example
|
|
: <lib>@boost/libs/thread/build/boost_thread
|
|
<lib>@boost/libs/system/build/boost_system
|
|
: <include>$(BOOST_ROOT)
|
|
<include>../../../..
|
|
<define>BOOST_ALL_NO_LIB=1
|
|
<threading>multi
|
|
<mingw><*><find-library>ws2_32
|
|
<mingw><*><find-library>mswsock
|
|
$(SOCKET_LIBS)
|
|
;
|
|
|
|
exe async_tcp_client
|
|
: <template>asio_timeouts_example
|
|
async_tcp_client.cpp
|
|
;
|
|
|
|
exe blocking_tcp_client
|
|
: <template>asio_timeouts_example
|
|
blocking_tcp_client.cpp
|
|
;
|
|
|
|
exe blocking_udp_client
|
|
: <template>asio_timeouts_example
|
|
blocking_udp_client.cpp
|
|
;
|
|
|
|
exe server
|
|
: <template>asio_timeouts_example
|
|
server.cpp
|
|
;
|