@@ -15,8 +15,8 @@ cpp-netlib offers the following implementations:
1515 generate message objects from strings.
1616 * Adapters and Wrappers -- A collection of Adapters and wrappers aimed
1717 towards making the message type STL friendly.
18- * Network protocol client and server implementations -- A collection
19- of network protocol implementations that include embeddable client
18+ * Network protocol client and server implementations -- A collection
19+ of network protocol implementations that include embeddable client
2020 and server types.
2121
2222This library is released under the Boost Software License (please see
@@ -47,30 +47,15 @@ The recommended installation procedure would be to follow the steps below::
4747 $ sudo mkdir -p /usr/local/include/cpp-netlib
4848 $ sudo cp -r cpp-netlib/boost /usr/local/include/cpp-netlib
4949
50- Now don't forget to add ``/usr/local/include/cpp-netlib `` in your project's
51- compiler include directories to start using cpp-netlib in your projects.
52-
53- Running Tests
54- -------------
55-
56- If you want to run the tests that come with cpp-netlib, there are a few things
57- you will need. These are:
58-
59- * A compiler (GCC 4.x or Clang 2.8)
60- * A build tool (CMake [# ]_ recommended, Boost.Build also an option)
61- * OpenSSL headers (optional with CMake, mandatory for Boost.Build)
62- * Python 2.6
63-
64- ..note ::This assumes that you have the cpp-netlib distribution package
65- unpacked somwhere in your home directory. This specifically assumes that you
66- have cpp-netlib at the toplevel of your home directory.
67- .. [# ]http://www.cmake.org/
50+ Don't forget to add ``/usr/local/include/cpp-netlib `` in your project's
51+ compiler include directories to start using cpp-netlib.
6852
6953Building with CMake
7054~~~~~~~~~~~~~~~~~~~
7155
72- To build and run the tests with CMake, you will need to have CMake version 2.8
73- or higher installed appropriately in your system.
56+ To build the libraries and run the tests with CMake, you will need to
57+ have CMake version 2.8 or higher installed appropriately in your
58+ system.
7459
7560::
7661
@@ -81,16 +66,11 @@ Inside the cpp-netlib directory, you can issue the following statements to
8166configure and generate the Makefiles, and build the tests::
8267
8368 $ cd ~/cpp-netlib # we're assuming it's where cpp-netlib is
84- $ cmake -DCMAKE_BUILD_TYPE=Debug \
85- >-CMAKE_C_COMPILER =clang \
86- >-CMAKE_CXX_COMPILER =clang++ \
69+ $ cmake -DCMAKE_BUILD_TYPE=Debug \
70+ > -DCMAKE_C_COMPILER =clang \
71+ > -DCMAKE_CXX_COMPILER =clang++ \
8772 > .
8873
89- ..note ::This uses the source directory as the build directory as well. At the
90- time of this writing, cpp-netlib is meant to be tested in the same directory
91- where the source files are, because of the way the tests depend on Python
92- being installed and having access to Python scripts during the build.
93-
9474Once CMake is done with generating the Makefiles and configuring the project,
9575you can now build the tests and run them::
9676
@@ -102,7 +82,7 @@ If for some reason some of the tests fail, you can send the files in
10282``Testing/Temporary/ `` as attachments to the cpp-netlib `developers mailing
10383list `_.
10484
105- .. _`developers mailing list` :https://lists.sourceforge.net/lists/listinfo/ cpp-netlib-devel
85+ .. _`developers mailing list` :cpp-netlib@googlegroups.com
10686
10787Building with Boost.Build
10888~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -113,7 +93,7 @@ to copy the ``bjam`` executable to a directory that is already in your ``PATH``
11393so that you don't have to go hunting for it all the time. A good place to put it
11494is in ``/usr/local/bin ``.
11595
116- .. [# ]http://www.boost.org/doc/libs/1_44_0 /more/getting_started/index.html
96+ .. [# ]http://www.boost.org/doc/libs/release /more/getting_started/
11797
11898 Building and running the tests can be as simple as doing the following::
11999
@@ -130,7 +110,22 @@ please do the following::
130110And then attach the ``build-test.log `` file to the email you will send to the
131111cpp-netlib `developers mailing list `_.
132112
133- .. _`developers mailing list` :https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel
113+ .. _`developers mailing list` :cpp-netlib@googlegroups.com
114+
115+ Running Tests
116+ -------------
117+
118+ If you want to run the tests that come with cpp-netlib, there are a few things
119+ you will need. These are:
120+
121+ * A compiler (GCC 4.x, Clang 2.8, MSVC 2008)
122+ * A build tool (CMake [# ]_ recommended, Boost.Build also an option)
123+ * OpenSSL headers (optional)
124+
125+ ..note ::This assumes that you have the cpp-netlib distribution package
126+ unpacked somwhere in your home directory. This specifically assumes that you
127+ have cpp-netlib at the toplevel of your home directory.
128+ .. [# ]http://www.cmake.org/
134129
135130 Hacking on cpp-netlib
136131---------------------
@@ -174,14 +169,10 @@ In case you have any questions or would like to make feature requests, you can
174169contact the development team through the `developers mailing list `_
175170or by filing issues at http://github.com/cpp-netlib/cpp-netlib/issues.
176171
177- .. _`developers mailing list` :
178- https://lists.sourceforge.net/lists/listinfo/cpp-netlib-devel
172+ .. _`developers mailing list` :cpp-netlib@googlegroups.com
179173
180174You can reach the maintainers of the project through::
181175
182176 Dean Michael Berris (dberris@google.com)
183177
184- Glyn Matthews
185-
186- Mike Dickey
187-
178+ Glyn Matthews (glyn.matthews@gmail.com)