aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/GNUmakefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-01-27 00:48:23 +0000
committerlloyd <[email protected]>2012-01-27 00:48:23 +0000
commit3d3c7f45e64c2dab1b9558fc9da80cdd30175063 (patch)
tree678b373878366651106baa5e716cd6ecde5a6e97 /doc/examples/GNUmakefile
parent25b549117c2f0c1e01810c9929a4204e846b70b8 (diff)
Use boost::asio instead of standalone asio as it's more commonly
available. If an error occurs in loading a certificate, etc then simply ignore it.
Diffstat (limited to 'doc/examples/GNUmakefile')
-rw-r--r--doc/examples/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/GNUmakefile b/doc/examples/GNUmakefile
index a27ad25a9..23045961e 100644
--- a/doc/examples/GNUmakefile
+++ b/doc/examples/GNUmakefile
@@ -21,4 +21,4 @@ eax_test: eax_test.cpp
$(CXX) $(CFLAGS) $? $(LIBS) -lboost_regex -o $@
asio_tls_server: asio_tls_server.cpp
- $(CXX) $(CFLAGS) $? $(LIBS) -lboost_thread -o $@
+ $(CXX) $(CFLAGS) $? $(LIBS) -lboost_thread -lboost_system -o $@